Searched refs:stereo (Results 1 - 16 of 16) sorted by relevance

/freebsd-9.3-release/sys/dev/sound/isa/
H A Dsb.h80 #define DSP_CMD_DMAMODE(stereo, bit16) (0xA0 | (stereo ? 8:0) | (bit16 ? 4:0))
H A Dsb8.c503 int stereo = (AFMT_CHANNEL(ch->fmt) > 1)? 1 : 0; local
508 thresh = stereo? 11025 : 23000;
509 max = stereo? 22050 : 44100;
527 tmp = 65536 - (256000000 / (speed << stereo));
532 speed = (256000000 / (65536 - tmp)) >> stereo;
544 int stereo = (AFMT_CHANNEL(ch->fmt) > 1)? 1 : 0; local
559 sb_setmixer(sb, 0x0e, stereo? 2 : 0);
H A Dess.c465 int stereo = (AFMT_CHANNEL(fmt) > 1)? 1 : 0; local
481 /* mono/stereo */
482 ess_write(sc, 0xa8, (ess_read(sc, 0xa8) & ~0x03) | (stereo? 0x01 : 0x02));
497 (stereo? 0x08 : 0x40));
510 fmtval = b16 | (stereo << 1) | (unsign << 2);
H A Dsb16.c296 int stereo; member in struct:sb16_mixent
362 if (e->stereo)
/freebsd-9.3-release/sys/dev/bktr/
H A Dbktr_audio.c45 * controlling any MSP34xx stereo audio decoders.
104 /* enable stereo if appropriate on TDA audio chip */
108 /* reset the MSP34xx stereo audio chip */
302 i2cWrite(bktr, TDA9850_WADDR, CON3ADDR, 0x40); /* stereo mode */
487 int stereo;
489 /* MSP3430G - countries with mono and DBX stereo */
514 /* MSP3410/MSP3415 - countries with mono, stereo using 2 FM channels and NICAM */
546 case 3: /* B/G Dual FM; German stereo */
547 /* Read the stereo detection value from DSP reg 0x0018 */
549 stereo
[all...]
H A Dmsp34xx.c41 * should work. The stereo modes are backward compatible to FM-mono,
49 * switch to stereo -- untested)
122 int stereo; member in struct:msp3400c
229 /* Terrestial FM-mono + FM-stereo */
270 { MSP_CARRIER(5.7421875), "5.742 PAL B/G FM-stereo" },
277 { MSP_CARRIER(6.2578125), "6.25 PAL D/K1 FM-stereo" },
278 { MSP_CARRIER(6.7421875), "6.74 PAL D/K2 FM-stereo" },
279 { MSP_CARRIER(7.02), "7.02 PAL SAT FM-stereo s/b" },
280 { MSP_CARRIER(7.20), "7.20 PAL SAT FM-stereo s" },
281 { MSP_CARRIER(7.38), "7.38 PAL SAT FM-stereo
[all...]
/freebsd-9.3-release/sys/dev/sound/pci/
H A Dds1.c368 ds_initpbank(volatile struct pbank *pb, int ch, int b16, int stereo, u_int32_t rate, bus_addr_t base, u_int32_t len) argument
393 ss += stereo? 1 : 0;
399 pb->Format = stereo? 0x00010000 : 0;
401 pb->Format |= (stereo && (ch == 2 || ch == 4))? 0x00000001 : 0;
436 int stereo, b16, c, sz; local
439 stereo = (AFMT_CHANNEL(ch->fmt) > 1)? 1 : 0;
441 c = stereo? 1 : 0;
445 ds_initpbank(ch->lslot, c, stereo, b16, ch->spd, addr, sz);
446 ds_initpbank(ch->lslot + 1, c, stereo, b16, ch->spd, addr, sz);
447 ds_initpbank(ch->rslot, 2, stereo, b1
455 int stereo, b16, i, sz, pri; local
550 int stereo; local
[all...]
H A Dmaestro.c119 unsigned stereo : 1; member in struct:agg_chinfo
139 unsigned stereo : 1; member in struct:agg_rchinfo
141 int16_t *src; /* stereo peer buffer */
860 if (ch->stereo) {
904 if (ch->stereo) {
966 if (ch->stereo) {
994 ch->buflen >> ch->stereo, 0, dv);
1000 ch->buflen >> ch->stereo, 0, dv);
1063 * Feed from L/R channel of ADC to destination with stereo interleaving.
1067 * XXX - this function works in 16bit stereo forma
[all...]
H A Daureal.c249 int i, stereo = (AFMT_CHANNEL(format) > 1)? 1 : 0; local
291 au_wr(au, 0, 0x0f800, stereo? 0x00030032 : 0x00030030, 4);
292 au_wr(au, 0, 0x0f804, stereo? 0x00030032 : 0x00030030, 4);
295 au_addroute(au, 0x11, stereo? 0 : 1, 0x59);
H A Demu10k1.c176 unsigned int b16:1, stereo:1, busy:1, running:1, ismaster:1; member in struct:emu_voice
581 m->stereo = 0;
603 s->stereo = 0;
622 v->stereo = (AFMT_CHANNEL(ch->fmt) > 1) ? 1 : 0;
625 v->slave->stereo = v->stereo;
642 s = (v->stereo ? 1 : 0) + (v->b16 ? 1 : 0);
648 if (v->stereo) {
653 emu_wrptr(sc, v->vnum, EMU_CHAN_CPF, v->stereo ? EMU_CHAN_CPF_STEREO_MASK : 0);
654 val = v->stereo
[all...]
H A Demu10kx.c256 unsigned int b16:1, stereo:1, busy:1, running:1, ismaster:1; member in struct:emu_voice
1315 m->stereo = 0;
1327 s->stereo = 0;
1343 v->stereo = (AFMT_CHANNEL(fmt) > 1) ? 1 : 0;
1346 v->slave->stereo = v->stereo;
1365 if ((v->stereo) && (v->ismaster == 0))
1371 if ((v->stereo) && (v->slave != NULL))
1381 s = (v->stereo ? 1 : 0) + (v->b16 ? 1 : 0);
1387 if (v->stereo) {
[all...]
H A Dsolo.c431 int stereo = (AFMT_CHANNEL(fmt) > 1)? 1 : 0; local
449 /* mono/stereo */
450 ess_write(sc, 0xa8, (ess_read(sc, 0xa8) & ~0x03) | (stereo? 0x01 : 0x02));
469 (stereo? 0x08 : 0x40));
484 fmtval = b16 | (stereo << 1) | ((!unsign) << 2);
H A Dcmi.c619 u_int8_t stereo:1; /* (no explanation needed, honest) */ member in struct:sb16props
696 if (cmt[dev].stereo) {
700 DEBMIX(printf("Mixer stereo write dev %d reg 0x%02x "\
732 if (cmt[i].stereo) {
H A Des137x.c260 unsigned stereo:1; member in struct:__anon8950
354 r = (mixtable[dev].stereo) ? right : l;
366 if (mixtable[dev].stereo) {
369 if (set_dac1 && mixtable[SOUND_MIXER_SYNTH].stereo)
H A Dvibes.c463 u_int8_t stereo:1; /* Supports 2 channels */ member in struct:sv_mix_props
506 if (mt[dev].stereo)
/freebsd-9.3-release/sys/dev/sound/pcm/
H A Dac97.c47 unsigned ofs:4; /* offset (only if stereo=0) */
48 unsigned stereo:1; /* set for stereo controls */ member in struct:ac97mixtable_entry
282 "simulated stereo",
448 if (!e->stereo)

Completed in 186 milliseconds