HomeSort by relevance Sort by last modified time
    Searched refs:pcm (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/QA/
diffiSACPLC.txt 10 diff $OUTDIR1/outplc1.pcm $OUTDIR2/outplc1.pcm
11 diff $OUTDIR1/outplc2.pcm $OUTDIR2/outplc2.pcm
12 diff $OUTDIR1/outplc3.pcm $OUTDIR2/outplc3.pcm
13 diff $OUTDIR1/outplc4.pcm $OUTDIR2/outplc4.pcm
14 diff $OUTDIR1/outplc5.pcm $OUTDIR2/outplc5.pcm
    [all...]
diffiSAC.txt 4 diff ../dataqa350/i30_1DTMF_16kHz_long.pcm ../dataqa351/i30_1DTMF_16kHz_long.pcm
5 diff ../dataqa350/i60_1DTMF_16kHz_long.pcm ../dataqa351/i60_1DTMF_16kHz_long.pcm
6 diff ../dataqa350/i30_2DTMF_16kHz_long.pcm ../dataqa351/i30_2DTMF_16kHz_long.pcm
7 diff ../dataqa350/i60_2DTMF_16kHz_long.pcm ../dataqa351/i60_2DTMF_16kHz_long.pcm
8 diff ../dataqa350/i30_3DTMF_16kHz_long.pcm ../dataqa351/i30_3DTMF_16kHz_long.pcm
    [all...]
runiSACPLC.txt 13 $ISAC 12000 -PL 15 $INDIR/speechmusic.pcm $OUTDIR/outplc1.pcm
14 $ISAC 20000 -PL 15 $INDIR/speechmusic.pcm $OUTDIR/outplc2.pcm
15 $ISAC 32000 -PL 15 $INDIR/speechmusic.pcm $OUTDIR/outplc3.pcm
16 $ISAC 12000 -PL 15 $INDIR/tone_cisco.pcm $OUTDIR/outplc4.pcm
17 $ISAC 20000 -PL 15 $INDIR/tone_cisco.pcm $OUTDIR/outplc5.pcm
    [all...]
runiSACRate.txt 8 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_1.pcm > $LOGG
9 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_2.pcm >> $LOGG
10 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_3.pcm >> $LOGG
11 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_4.pcm >> $LOGG
12 ../Release/kenny.exe 13000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_5.pcm >> $LOG
    [all...]
  /external/tinyalsa/
pcm.c 0 /* pcm.c
243 struct pcm { struct
262 unsigned int pcm_get_buffer_size(struct pcm *pcm)
264 return pcm->buffer_size;
267 const char* pcm_get_error(struct pcm *pcm)
269 return pcm->error;
272 unsigned int pcm_get_subdevice(struct pcm *pcm)
878 struct pcm *pcm; local
    [all...]
  /external/tinyalsa/include/tinyalsa/
asoundlib.h 40 * PCM API
43 struct pcm;
60 /* PCM runtime states */
121 /* PCM parameters */
157 struct pcm *pcm_open(unsigned int card, unsigned int device,
159 int pcm_close(struct pcm *pcm);
160 int pcm_is_ready(struct pcm *pcm);
162 /* Obtain the parameters for a PCM */
    [all...]
  /hardware/qcom/audio/legacy/libalsa-intf/
alsa_pcm.c 181 static int oops(struct pcm *pcm, int e, const char *fmt, ...);
325 int param_set_hw_refine(struct pcm *pcm, struct snd_pcm_hw_params *params)
327 if (ioctl(pcm->fd, SNDRV_PCM_IOCTL_HW_REFINE, params)) {
334 int param_set_hw_params(struct pcm *pcm, struct snd_pcm_hw_params *params)
336 if (ioctl(pcm->fd, SNDRV_PCM_IOCTL_HW_PARAMS, params)) {
339 pcm->hw_p = params;
343 int param_set_sw_params(struct pcm *pcm, struct snd_pcm_sw_params *sparams
755 struct pcm *pcm; local
    [all...]
aplay.c 55 {"pcm", 0, 0, 'P'},
83 static int set_params(struct pcm *pcm)
90 unsigned int requestedRate = pcm->rate;
91 int channels = (pcm->flags & PCM_MONO) ? 1 : ((pcm->flags & PCM_5POINT1)? 6 : 2 );
102 (pcm->flags & PCM_MMAP)? SNDRV_PCM_ACCESS_MMAP_INTERLEAVED : SNDRV_PCM_ACCESS_RW_INTERLEAVED);
103 param_set_mask(params, SNDRV_PCM_HW_PARAM_FORMAT, pcm->format);
112 pcm->channels * 16);
114 pcm->channels)
167 struct pcm *pcm; local
    [all...]
arec.c 47 static struct pcm *pcm; variable in typeref:struct:pcm
59 {"pcm", 0, 0, 'P'},
87 static int set_params(struct pcm *pcm)
94 unsigned int requestedRate = pcm->rate;
105 (pcm->flags & PCM_MMAP)? SNDRV_PCM_ACCESS_MMAP_INTERLEAVED : SNDRV_PCM_ACCESS_RW_INTERLEAVED);
106 param_set_mask(params, SNDRV_PCM_HW_PARAM_FORMAT, pcm->format);
115 pcm->channels * 16);
117 pcm->channels)
    [all...]
alsa_audio.h 24 struct pcm { struct
82 /* Acquire/release a pcm channel.
116 /** PCM */
137 struct pcm *pcm_open(unsigned flags, char *device);
138 int pcm_close(struct pcm *pcm);
139 int pcm_ready(struct pcm *pcm);
140 int mmap_buffer(struct pcm *pcm);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
pcm_old.h 12 int snd_pcm_hw_params_test_access(snd_pcm_t *pcm, snd_pcm_hw_params_t *params, snd_pcm_access_t val);
13 int snd_pcm_hw_params_set_access(snd_pcm_t *pcm, snd_pcm_hw_params_t *params, snd_pcm_access_t val);
14 snd_pcm_access_t snd_pcm_hw_params_set_access_first(snd_pcm_t *pcm, snd_pcm_hw_params_t *params);
15 snd_pcm_access_t snd_pcm_hw_params_set_access_last(snd_pcm_t *pcm, snd_pcm_hw_params_t *params);
16 int snd_pcm_hw_params_set_access_mask(snd_pcm_t *pcm, snd_pcm_hw_params_t *params, snd_pcm_access_mask_t *mask);
24 int snd_pcm_hw_params_test_format(snd_pcm_t *pcm, snd_pcm_hw_params_t *params, snd_pcm_format_t val);
25 int snd_pcm_hw_params_set_format(snd_pcm_t *pcm, snd_pcm_hw_params_t *params, snd_pcm_format_t val);
26 snd_pcm_format_t snd_pcm_hw_params_set_format_first(snd_pcm_t *pcm, snd_pcm_hw_params_t *params);
27 snd_pcm_format_t snd_pcm_hw_params_set_format_last(snd_pcm_t *pcm, snd_pcm_hw_params_t *params);
28 int snd_pcm_hw_params_set_format_mask(snd_pcm_t *pcm, snd_pcm_hw_params_t *params, snd_pcm_format_mask_t *mask)
    [all...]
pcm.h 2 * \file include/pcm.h
10 * See the \ref pcm page for more details.
37 * \defgroup PCM PCM Interface
38 * See the \ref pcm page for more details.
45 /** PCM generic info container */
48 /** PCM hardware configuration space container
51 * PCM hardware configurations. For example, a given instance might include a
64 /** PCM software configuration container */
66 /** PCM status container *
    [all...]
  /frameworks/base/libs/usb/tests/accessorytest/
audio.c 125 struct pcm *pcm = NULL; local
138 while (!pcm) {
139 pcm = pcm_open(input_card, input_device, PCM_IN, &config);
140 if (pcm && !pcm_is_ready(pcm)) {
141 pcm_close(pcm);
142 pcm = NULL;
144 if (!pcm)
148 while (pcm) {
166 struct pcm *pcm = arg; local
191 struct pcm *pcm; local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/QA/
runiSACLongtest.txt 152 $ISAC -B 10000 -FS 16 ../data/orig/speech_and_misc_WB.pcm \
153 ../FrameSizeLim"$PLATFORM"/APITest_"$idx".pcm >> $LOGFILE_API
160 $ISAC -B 10000 -FL 30 -FIXED_FL -FS 16 ../data/orig/speech_and_misc_WB.pcm \
161 ../FrameSizeLim"$PLATFORM"/APITest_"$idx".pcm >> $LOGFILE_API
167 $ISAC -B 32000 -FS 16 ../data/orig/speech_and_misc_WB.pcm \
168 ../FrameSizeLim"$PLATFORM"/APITest_"$idx".pcm >> $LOGFILE_API
175 $ISAC -B 32000 -FL 60 -FIXED_FL -FS 16 ../data/orig/speech_and_misc_WB.pcm \
176 ../FrameSizeLim"$PLATFORM"/APITest_"$idx".pcm >> $LOGFILE_API
192 $ISAC -I -B 32000 -FL 60 -FS 16 ../data/orig/speech_and_misc_WB.pcm \
193 ../PayloadLim"$PLATFORM"/APITest_"$idx".pcm >> $LOGFILE_AP
    [all...]
runiSACfault.txt 40 file_wb=../data/orig/16kHz.pcm
41 file_swb=../data/origswb/32kHz.pcm
59 $OUTDIR/ft"$testnr"_"${TARGETRATE[idx]}"_"${SAMPFREQ[idx]}".pcm >> LOGFILE
67 $OUTDIR/ft10_"${TARGETRATE[idx]}"_"${SAMPFREQ[idx]}".pcm >> LOGFILE
71 $OUTDIR/ft10plc_"${TARGETRATE[idx]}"_"${SAMPFREQ[idx]}".pcm >> LOGFILE
  /hardware/qcom/audio/legacy/alsa_sound/
AudioUsbALSA.h 77 struct pcm *mproxyRecordingHandle;
78 struct pcm *musbRecordingHandle;
79 struct pcm *mproxyPlaybackHandle;
80 struct pcm *musbPlaybackHandle;
90 struct pcm * configureDevice(unsigned flags, char* hw, int sampleRate, int channelCount, int periodSize, bool playback);
91 status_t syncPtr(struct pcm *handle, bool *killThread);
101 status_t startDevice(pcm *handle, bool *killThread);
109 status_t setHardwareParams(pcm *local_handle, uint32_t sampleRate, uint32_t channels, int periodSize);
111 status_t setSoftwareParams(pcm *pcm, bool playback)
    [all...]
  /external/libopus/tests/
opus_decode_fuzzer.c 63 opus_int16 *pcm; local
81 pcm = (opus_int16*) malloc(sizeof(*pcm) * MAX_FRAME_SAMP * toc.channels);
108 (void) opus_decode(dec, NULL, size, pcm, frame_size, fec);
113 memcpy(pcm, &data[i + SETUP_BYTE_COUNT], len);
114 (void) opus_decode(dec, data, size, pcm, MAX_FRAME_SAMP, fec);
121 free(pcm);
opus_encode_regressions.c 69 static const short pcm[320] = local
108 err = opus_multistream_encode(enc, pcm, 320, data, 2460);
125 static const short pcm[160] = local
146 err = opus_multistream_encode(enc, pcm, 160, data, 2460);
163 static const short pcm[160] = local
184 err = opus_multistream_encode(enc, pcm, 160, data, 2460);
201 static const short pcm[160] = local
222 err = opus_multistream_encode(enc, pcm, 160, data, 2460);
239 static const short pcm[160] = local
258 err = opus_multistream_encode(enc, pcm, 160, data, 2460)
275 static const short pcm[40] = local
332 static const short pcm[20*255] = local
382 static const short pcm[20*192] = local
419 static const short pcm[960*3] = local
760 static const short pcm[1440*3] = local
971 static const short pcm[960] = { 0 }; local
977 static const short pcm[480] = local
    [all...]
  /device/generic/car/emulator/audio/driver/
ext_pcm.h 34 struct pcm *pcm; member in struct:ext_pcm
  /cts/suite/audio_quality/lib/include/audio/
AudioPlaybackLocal.h 40 struct pcm* mPcmHandle;
AudioRecordingLocal.h 40 struct pcm* mPcmHandle;
  /system/media/alsa_utils/
alsa_device_proxy.c 104 proxy->pcm = NULL;
137 proxy->pcm = pcm_open(profile->card, profile->device,
139 if (proxy->pcm == NULL) {
143 if (!pcm_is_ready(proxy->pcm)) {
144 ALOGE(" proxy_open() pcm_is_ready() failed: %s", pcm_get_error(proxy->pcm));
148 pcm_close(proxy->pcm);
149 proxy->pcm = NULL;
158 ALOGV("proxy_close() [pcm:%p]", proxy->pcm);
160 if (proxy->pcm != NULL)
    [all...]
  /system/bt/embdrv/sbc/decoder/srce/
synthesis-8-generated.c 50 PRIVATE void SynthWindow80_generated(int16_t* pcm,
66 pcm[0 << strideShift] = (int16_t)pcm_b;
91 pcm[1 << strideShift] = (int16_t)pcm_a;
94 pcm[7 << strideShift] = (int16_t)pcm_b;
119 pcm[2 << strideShift] = (int16_t)pcm_a;
122 pcm[6 << strideShift] = (int16_t)pcm_b;
147 pcm[3 << strideShift] = (int16_t)pcm_a;
150 pcm[5 << strideShift] = (int16_t)pcm_b;
159 pcm[4 << strideShift] = (int16_t)pcm_a;
  /system/media/alsa_utils/include/
alsa_device_proxy.h 29 struct pcm * pcm; member in struct:__anon3100
  /external/libopus/include/
opus_custom.h 188 * @param [in] pcm <tt>float*</tt>: PCM audio in float format, with a normal range of +/-1.0.
195 * @param [out] compressed <tt>char *</tt>: The compressed data is written here. This may not alias pcm and must be at least maxCompressedBytes long.
205 const float *pcm,
213 * @param [in] pcm <tt>opus_int16*</tt>: PCM audio in signed 16-bit format (native endian).
216 * @param [out] compressed <tt>char *</tt>: The compressed data is written here. This may not alias pcm and must be at least maxCompressedBytes long.
226 const opus_int16 *pcm,
298 * @param [out] pcm <tt>float*</tt>: Output signal (interleaved if 2 channels). length
300 * @param [in] frame_size Number of samples per channel of available space in *pcm
    [all...]

Completed in 687 milliseconds

1 2 3 4