Searched refs:pcm (Results 126 - 150 of 245) sorted by relevance

12345678910

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/pci/nm256/
H A Dnm256.c40 #include <sound/pcm.h>
248 struct snd_pcm *pcm; member in struct:nm256
897 * create a pcm instance
931 struct snd_pcm *pcm; local
941 1, 1, &pcm);
945 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_nm256_playback_ops);
946 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_nm256_capture_ops);
948 pcm->private_data = chip;
949 pcm->info_flags = 0;
950 chip->pcm
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/pci/pcxhr/
H A Dpcxhr.c38 #include <sound/pcm.h>
460 snd_printdd("pcxhr_update_r_buffer(pcm%c%d) : addr(%p) bytes(%zx) subs(%d)\n",
798 * CONFIGURATION SPACE for all pcms, mono pcm must update channels_max
957 struct snd_pcm *pcm; local
963 chip->nb_streams_capt, &pcm)) < 0) {
964 snd_printk(KERN_ERR "cannot create pcm %s\n", name);
967 pcm->private_data = chip;
970 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &pcxhr_ops);
972 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &pcxhr_ops);
974 pcm
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/ppc/
H A Dpmac.c78 * pcm stuff
597 struct snd_pcm *pcm; local
603 err = snd_pcm_new(chip->card, chip->card->driver, 0, 1, num_captures, &pcm);
607 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_pmac_playback_ops);
609 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_pmac_capture_ops);
611 pcm->private_data = chip;
612 pcm->info_flags = SNDRV_PCM_INFO_JOINT_DUPLEX;
613 strcpy(pcm->name, chip->card->shortname);
614 chip->pcm = pcm;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/sound/
H A Dpcm_params.h25 int snd_pcm_hw_param_first(struct snd_pcm_substream *pcm,
28 int snd_pcm_hw_param_last(struct snd_pcm_substream *pcm,
H A Dad1816a.h24 #include "pcm.h"
142 struct snd_pcm *pcm; member in struct:snd_ad1816a
H A Dad1848.h25 #include "pcm.h"
140 struct snd_pcm *pcm; member in struct:snd_ad1848
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/pci/emu10k1/
H A Demufx.c984 struct snd_emu10k1_fx8010_pcm *pcm; local
990 pcm = &emu->fx8010.pcm[ipcm->substream];
993 if (pcm->opened) {
998 pcm->valid = 0;
1004 pcm->valid = 1;
1005 pcm->opened = 0;
1006 pcm->channels = ipcm->channels;
1007 pcm->tram_start = ipcm->tram_start;
1008 pcm
1029 struct snd_emu10k1_fx8010_pcm *pcm; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/pci/hda/
H A Dpatch_si3054.c85 struct hda_pcm pcm; member in struct:si3054_spec
209 struct hda_pcm *info = &spec->pcm;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/pci/ice1712/
H A Dice1712.c883 struct snd_pcm *pcm; local
888 err = snd_pcm_new(ice->card, "ICE1712 consumer", device, 1, 1, &pcm);
892 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_ice1712_playback_ops);
893 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_ice1712_capture_ops);
895 pcm->private_data = ice;
896 pcm->info_flags = 0;
897 strcpy(pcm->name, "ICE1712 consumer");
898 ice->pcm = pcm;
900 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DE
913 struct snd_pcm *pcm; local
1251 struct snd_pcm *pcm; local
[all...]
H A Denvy24ht.h29 #include <sound/pcm.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/pci/au88x0/
H A Dau88x0.h25 #include <sound/pcm.h>
140 struct snd_pcm *pcm[VORTEX_PCM_LAST]; member in struct:snd_vortex
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/pci/
H A Dbt87x.c33 #include <sound/pcm.h>
398 if (substream->pcm->device == DEVICE_DIGITAL)
690 struct snd_pcm *pcm; local
692 err = snd_pcm_new(chip->card, name, device, 0, 1, &pcm);
695 pcm->private_data = chip;
696 strcpy(pcm->name, name);
697 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_bt87x_pcm_ops);
698 return snd_pcm_lib_preallocate_pages_for_all(pcm,
H A Dcs4281.c33 #include <sound/pcm.h>
469 struct snd_pcm *pcm; member in struct:cs4281
975 struct snd_pcm *pcm; local
980 err = snd_pcm_new(chip->card, "CS4281", device, 1, 1, &pcm);
984 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cs4281_playback_ops);
985 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_cs4281_capture_ops);
987 pcm->private_data = chip;
988 pcm->info_flags = 0;
989 strcpy(pcm->name, "CS4281");
990 chip->pcm
[all...]
H A Dcmipci.c36 #include <sound/pcm.h>
421 struct snd_pcm *pcm; /* DAC/ADC PCM */ member in struct:cmipci
1311 if (cm->pcm) {
1691 struct snd_pcm *pcm; local
1694 err = snd_pcm_new(cm->card, cm->card->driver, device, 1, 1, &pcm);
1698 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cmipci_playback_ops);
1699 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_cmipci_capture_ops);
1701 pcm->private_data = cm;
1702 pcm->info_flags = 0;
1703 strcpy(pcm
1714 struct snd_pcm *pcm; local
1736 struct snd_pcm *pcm; local
[all...]
H A Des1938.c61 #include <sound/pcm.h>
218 struct snd_pcm *pcm; member in struct:es1938
997 struct snd_pcm *pcm; local
1000 if ((err = snd_pcm_new(chip->card, "es-1938-1946", device, 2, 1, &pcm)) < 0)
1002 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_es1938_playback_ops);
1003 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_es1938_capture_ops);
1005 pcm->private_data = chip;
1006 pcm->info_flags = 0;
1007 strcpy(pcm->name, "ESS Solo-1");
1009 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DE
[all...]
H A Des1968.c110 #include <sound/pcm.h>
463 /* playback/capture pcm buffer */
513 struct snd_pcm *pcm; member in struct:es1968
1751 static void snd_es1968_pcm_free(struct snd_pcm *pcm) argument
1753 struct es1968 *esm = pcm->private_data;
1755 esm->pcm = NULL;
1761 struct snd_pcm *pcm; local
1776 chip->capture_streams, &pcm)) < 0)
1779 pcm->private_data = chip;
1780 pcm
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/soc/codecs/
H A Dwm9712.c24 #include <sound/pcm.h>
181 u16 l, r, beep, line, phone, mic, pcm, aux; local
189 pcm = ac97_read(w->codec, AC97_PCM);
198 ac97_write(w->codec, AC97_PCM, pcm & 0x7fff);
200 ac97_write(w->codec, AC97_PCM, pcm | 0x8000);
H A Dac97.c24 #include <sound/pcm.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/sparc/
H A Dcs4231.c21 #include <sound/pcm.h>
78 void (*preallocate)(struct snd_cs4231 *chip, struct snd_pcm *pcm);
100 struct snd_pcm *pcm; member in struct:snd_cs4231
1379 struct snd_pcm *pcm; local
1382 if ((err = snd_pcm_new(chip->card, "CS4231", 0, 1, 1, &pcm)) < 0)
1385 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cs4231_playback_ops);
1386 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_cs4231_capture_ops);
1389 pcm->private_data = chip;
1390 pcm->info_flags = SNDRV_PCM_INFO_JOINT_DUPLEX;
1391 strcpy(pcm
1910 sbus_dma_preallocate(struct snd_cs4231 *chip, struct snd_pcm *pcm) argument
2091 _ebus_dma_preallocate(struct snd_cs4231 *chip, struct snd_pcm *pcm) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/isa/
H A Des18xx.c33 * - The chip has one half duplex pcm (with very limited full duplex support).
44 * - there are a first full duplex pcm and a second playback only pcm
45 * (incompatible with first pcm capture)
61 * the second pcm (Audio1) DMA slows down irregularly and sound is garbled.
94 #include <sound/pcm.h>
126 struct snd_pcm *pcm; member in struct:snd_es18xx
1697 struct snd_pcm *pcm; local
1705 err = snd_pcm_new(chip->card, str, device, 2, 1, &pcm);
1707 err = snd_pcm_new(chip->card, str, device, 1, 1, &pcm);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/isa/gus/
H A Dgus_reset.c225 pvoice->pcm = 1;
289 if (voice->pcm)
291 voice->use = voice->pcm = 0;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/skfp/
H A Dqueue.c105 pcm(smc,class - EVENT_PCMA,(int)ev->event) ;
157 else if (!strcmp(flag,"pcm"))
167 printf("pcm %d\n",deb->d_pcm) ;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/soc/bcm947xx/
H A Dbcm94717ap.c29 #include <sound/pcm.h>
47 #include "bcm947xx-pcm.h"
H A Dbcm94717bu.c29 #include <sound/pcm.h>
47 #include "bcm947xx-pcm.h"
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/usb/caiaq/
H A Dcaiaq-midi.c29 #include <sound/pcm.h>

Completed in 227 milliseconds

12345678910