Symbol: MIXART_PLAYBACK_STREAMS
sound/pci/mixart/mixart.c
238
stream_count = MIXART_PLAYBACK_STREAMS;
sound/pci/mixart/mixart.c
284
j = (chip->chip_idx * MIXART_MAX_STREAM_PER_CARD) + (pcm_number * (MIXART_PLAYBACK_STREAMS + MIXART_CAPTURE_STREAMS)) + i;
sound/pci/mixart/mixart.c
285
if(capture) j += MIXART_PLAYBACK_STREAMS; /* in the array capture is behind playback */
sound/pci/mixart/mixart.c
626
int i = (chip->chip_idx * MIXART_MAX_STREAM_PER_CARD) + (stream->pcm_number * (MIXART_PLAYBACK_STREAMS+MIXART_CAPTURE_STREAMS)) + subs->number;
sound/pci/mixart/mixart.c
628
i += MIXART_PLAYBACK_STREAMS; /* in array capture is behind playback */
sound/pci/mixart/mixart.c
940
MIXART_PLAYBACK_STREAMS,
sound/pci/mixart/mixart.c
974
MIXART_PLAYBACK_STREAMS,
sound/pci/mixart/mixart.h
108
#define MIXART_MAX_STREAM_PER_CARD (MIXART_PCM_TOTAL * (MIXART_PLAYBACK_STREAMS + MIXART_CAPTURE_STREAMS) )
sound/pci/mixart/mixart.h
169
struct mixart_stream playback_stream[MIXART_PCM_TOTAL][MIXART_PLAYBACK_STREAMS]; /* 0 = pcm, 1 = pcm_dig */
sound/pci/mixart/mixart.h
179
int digital_playback_active[2*MIXART_PLAYBACK_STREAMS][2]; /* Mixer : Digital Playback Active [(analog+AES output)*streams][stereo]*/
sound/pci/mixart/mixart.h
180
int digital_playback_volume[2*MIXART_PLAYBACK_STREAMS][2]; /* Mixer : Digital Playback Volume [(analog+AES output)*streams][stereo]*/
sound/pci/mixart/mixart_core.c
456
if ((chip_number >= mgr->num_cards) || (pcm_number >= MIXART_PCM_TOTAL) || (sub_number >= MIXART_PLAYBACK_STREAMS)) {
sound/pci/mixart/mixart_mixer.c
1135
temp.count = MIXART_PLAYBACK_STREAMS;
sound/pci/mixart/mixart_mixer.c
1150
temp.count = MIXART_PLAYBACK_STREAMS;
sound/pci/mixart/mixart_mixer.c
723
idx += MIXART_PLAYBACK_STREAMS;
sound/pci/mixart/mixart_mixer.c
832
snd_BUG_ON(idx >= MIXART_PLAYBACK_STREAMS);
sound/pci/mixart/mixart_mixer.c
833
if(is_aes) stored_volume = chip->digital_playback_volume[MIXART_PLAYBACK_STREAMS + idx]; /* AES playback */
sound/pci/mixart/mixart_mixer.c
858
snd_BUG_ON(idx >= MIXART_PLAYBACK_STREAMS);
sound/pci/mixart/mixart_mixer.c
860
stored_volume = chip->digital_playback_volume[MIXART_PLAYBACK_STREAMS + idx];
sound/pci/mixart/mixart_mixer.c
903
snd_BUG_ON(idx >= MIXART_PLAYBACK_STREAMS);
sound/pci/mixart/mixart_mixer.c
907
idx += MIXART_PLAYBACK_STREAMS;
sound/pci/mixart/mixart_mixer.c
920
snd_BUG_ON(idx >= MIXART_PLAYBACK_STREAMS);
sound/pci/mixart/mixart_mixer.c
925
j += MIXART_PLAYBACK_STREAMS;
sound/pci/mixart/mixart_mixer.c
942
.count = MIXART_PLAYBACK_STREAMS,