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

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/oss/dmasound/
H A Dtrans_16.c75 int val, stereo = dmasound.soft.stereo; local
78 if (stereo)
87 if (stereo) {
96 return stereo? used * 2: used;
106 int val, stereo = dmasound.soft.stereo; local
109 if (stereo)
118 if (stereo) {
127 return stereo
137 int val, stereo = dmasound.soft.stereo; local
167 int stereo = dmasound.soft.stereo; local
197 int stereo = dmasound.soft.stereo; local
235 int stereo = dmasound.soft.stereo; local
278 int stereo = dmasound.soft.stereo; local
323 int stereo = dmasound.soft.stereo; local
369 int stereo = dmasound.soft.stereo; local
414 int stereo = dmasound.soft.stereo; local
457 int val, stereo = dmasound.soft.stereo; local
492 int val, stereo = dmasound.soft.stereo; local
525 int stereo = dmasound.soft.stereo; local
558 int stereo = dmasound.soft.stereo; local
595 int vall,valr, stereo = dmasound.soft.stereo; local
644 int vall,valr, stereo = dmasound.soft.stereo; local
694 int stereo = dmasound.soft.stereo; local
742 int stereo = dmasound.soft.stereo; local
[all...]
H A Ddmasound_core.c268 static int sound_set_stereo(int stereo) argument
270 if (stereo < 0)
271 return dmasound.soft.stereo;
273 stereo = !!stereo; /* should be 0 or 1 now */
275 dmasound.soft.stereo = stereo;
277 dmasound.dsp.stereo = stereo;
279 return stereo;
[all...]
H A Ddmasound_atari.c65 * only in stereo is hardcoded in both of them!
164 if (dmasound.soft.stereo)
187 if (dmasound.soft.stereo)
203 if (!dmasound.soft.stereo) {
238 if (!dmasound.soft.stereo) {
270 if (!dmasound.soft.stereo) {
310 if (!dmasound.soft.stereo) {
351 if (!dmasound.soft.stereo) {
397 if (!dmasound.soft.stereo) {
457 if (!dmasound.soft.stereo) {
[all...]
H A Ddmasound_paula.c149 * only in stereo is hardcoded in both of them!
164 if (!dmasound.soft.stereo) {
198 if (!dmasound.soft.stereo) { \
251 if (!dmasound.soft.stereo) { \
476 if (dmasound.hard.stereo) {
675 .stereo = 0,
682 .stereo = 0,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna/tagutils/
H A Dtagutils-mp3.h29 int stereo; // flag member in struct:mp3_frameinfo
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.03.14/tagutils/
H A Dtagutils-mp3.h28 int stereo; // flag member in struct:mp3_frameinfo
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.07.26/tagutils/
H A Dtagutils-mp3.h29 int stereo; // flag member in struct:mp3_frameinfo
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Droqaudioenc.c57 av_log(avctx, AV_LOG_ERROR, "Audio must be mono or stereo\n");
122 int i, samples, stereo, ch; local
128 stereo = (avctx->channels == 2);
130 if (stereo) {
138 bytestream_put_byte(&out, stereo ? 0x21 : 0x20);
142 if (stereo) {
H A Dlibspeexdec.c29 SpeexStereoState stereo; member in struct:__anon536
66 av_log(avctx, AV_LOG_ERROR, "Only stereo and mono are supported.\n");
84 callback.data = &s->stereo;
85 s->stereo = (SpeexStereoState)SPEEX_STEREO_STATE_INIT;
114 speex_decode_stereo_int(output, avctx->frame_size, &s->stereo);
H A Dlibmp3lame.c34 int stereo; member in struct:Mp3AudioContext
46 s->stereo = avctx->channels > 1 ? 1 : 0;
151 if (s->stereo) {
H A Dsmacker.c578 int bits, stereo; local
590 stereo = get_bits1(&gb);
600 for(i = 0; i < (1 << (bits + stereo)); i++) {
621 for(i = stereo; i >= 0; i--)
623 for(i = 0; i < stereo; i++)
626 if(i & stereo) {
655 for(i = stereo; i >= 0; i--)
657 for(i = 0; i < stereo; i++)
660 if(i & stereo){
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/ppc/
H A Dburgundy.c131 * Burgundy volume: 0 - 100, stereo
224 int stereo = (kcontrol->private_value >> 24) & 1; local
226 uinfo->count = stereo + 1;
238 int stereo = (kcontrol->private_value >> 24) & 1; local
241 if (stereo)
252 int stereo = (kcontrol->private_value >> 24) & 1; local
258 if (stereo && ucontrol->value.integer.value[1])
264 #define BURGUNDY_OUTPUT_SWITCH(xname, xindex, lmask, rmask, stereo) \
269 .private_value = ((lmask) | ((rmask) << 8) | ((stereo) << 24)) }
275 int stereo local
288 int stereo = (kcontrol->private_value >> 24) & 1; local
303 int stereo = (kcontrol->private_value >> 24) & 1; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/radio/
H A Dmiropcm20-radio.c14 * use OSS-mixer; added stereo control
35 int stereo; member in struct:pcm20_device
45 static int pcm20_stereo(struct pcm20_device *dev, unsigned char stereo) argument
47 dev->stereo = stereo;
48 return aci_write_cmd(ACI_SET_TUNERMONO, !stereo);
73 /* okay, check for signal, stereo and rds here... */
93 /* stereo */
95 /* I can't see stereo, when forced to mono */
96 dev->stereo
[all...]
H A Dradio-zoltrix.c16 * - Make signal strength and stereo scans
20 * - Added stereo support
21 * (card defaults to stereo)
23 * (can detect if station is in stereo)
75 unsigned int stereo; member in struct:zol_device
121 unsigned int stereo = dev->stereo; local
141 bitmask = (bitmask ^ ((f & 0xff) << 47) ^ ((f & 0xff00) << 30) ^ ( stereo << 31));
348 zol->stereo = 1;
453 zoltrix_unit.stereo
[all...]
H A Ddsbr100.c8 at the stereo indicator as well. So, scanning will only find
9 stereo stations. Sad, but I can't help it.
140 int stereo; member in struct:dsbr100_device
214 radio->stereo = -1;
217 radio->stereo = ! ((radio->transfer_buffer)[0]&0x01);
222 sees a stereo signal or not. Pity. */
229 radio->stereo = -1;
231 radio->stereo = ! (radio->transfer_buffer[0]&0x01);
287 if(radio->stereo)
H A Dradio-sf16fmr2.c10 * For read stereo/mono you must wait 0.1 sec after set frequency and
66 int stereo; /* card is producing stereo audio */ member in struct:fmr2_device
120 debug_print((KERN_DEBUG "stereo: %d\n", n));
172 dev->stereo = fmr2_stereo_mode(port);
258 v->audmode = fmr2->stereo ? V4L2_TUNER_MODE_STEREO:
467 fmr2_unit.stereo = 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Diss.c74 int stereo, rate_divisor; local
81 get_token(pb, token, sizeof(token)); //stereo
82 sscanf(token, "%d", &stereo);
97 st->codec->channels = stereo ? 2 : 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/sound/
H A Dmixer_oss.h33 unsigned int stereo: 1; member in struct:snd_mixer_oss_slot
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/ivtv/
H A Divtv-cards.h146 u16 stereo; /* set audio to stereo */ member in struct:ivtv_gpio_audio_mode
161 u16 stereo; /* if the input matches this value then member in struct:ivtv_gpio_audio_detect
162 stereo is detected */
H A Divtv-cards.c227 .gpio_audio_mode = { .mask = 0x4300, .mono = 0x4000, .stereo = 0x0200,
231 .gpio_audio_detect = { .mask = 0x4000, .stereo = 0x0000 },
269 .gpio_audio_mode = { .mask = 0x000e, .mono = 0x0006, .stereo = 0x0004,
271 .gpio_audio_detect = { .mask = 0x0900, .stereo = 0x0100 },
310 .gpio_audio_mode = { .mask = 0x000e, .mono = 0x0006, .stereo = 0x0004,
312 .gpio_audio_detect = { .mask = 0x0900, .stereo = 0x0100 },
458 .gpio_audio_mode = { .mask = 0x4300, .mono = 0x4000, .stereo = 0x0200,
814 .gpio_audio_mode = { .mask = 0x4300, .mono = 0x4000, .stereo = 0x0200,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/plugin_winamp2/include/winamp2/
H A Din2.h104 void (*SetInfo)(int bitrate, int srate, int stereo, int synched); // if -1, changes ignored? :)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/
H A Dtuner-simple.c102 int stereo, status; local
112 stereo = ((status & TUNER_SIGNAL) == TUNER_STEREO_MK3);
115 stereo = status & TUNER_STEREO;
118 return stereo;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/oss/
H A Dac97.h21 #define AC97_LINEIN_VOL 0x0010 // Line Input (stereo)
22 #define AC97_CD_VOL 0x0012 // CD Input (stereo)
24 #define AC97_AUX_VOL 0x0016 // Aux Input (stereo)
25 #define AC97_PCMOUT_VOL 0x0018 // Wave Output (stereo)
174 } stereo; member in union:ac97_mixer_value_list::__anon11000
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/parisc/
H A Dharmony.h28 u32 stereo; member in struct:snd_harmony::__anon11044
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/pci/emu10k1/
H A Demupcm.c240 * stereo: channel is stereo
245 static inline int emu10k1_ccis(int stereo, int w_16) argument
248 return stereo ? 24 : 26;
250 return stereo ? 24*2 : 26*2;
264 int voice, stereo, w_16; local
272 stereo = runtime->channels == 2;
275 if (!extra && stereo) {
297 tmp = stereo ? (master ? 1 : 2) : 0;
302 ccis = emu10k1_ccis(stereo, w_1
610 unsigned int voice, stereo, i, ccis, cra = 64, cs, sample; local
[all...]

Completed in 178 milliseconds

123