Home
last modified time | relevance | path

Searched refs:pcm (Results 1 – 25 of 264) sorted by relevance

1234567891011

/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/QA/
DdiffiSAC.txt4 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
9 diff ../dataqa350/i60_3DTMF_16kHz_long.pcm ../dataqa351/i60_3DTMF_16kHz_long.pcm
10 diff ../dataqa350/i30_4DTMF_16kHz_long.pcm ../dataqa351/i30_4DTMF_16kHz_long.pcm
11 diff ../dataqa350/i60_4DTMF_16kHz_long.pcm ../dataqa351/i60_4DTMF_16kHz_long.pcm
12 diff ../dataqa350/i30_5DTMF_16kHz_long.pcm ../dataqa351/i30_5DTMF_16kHz_long.pcm
13 diff ../dataqa350/i60_5DTMF_16kHz_long.pcm ../dataqa351/i60_5DTMF_16kHz_long.pcm
[all …]
DInputFiles.txt1 DTMF_16kHz_long.pcm
2 DTMF_16kHz_short.pcm
10 longtest.pcm
11 ltest_speech_clean.pcm
12 ltest_music.pcm
13 ltest_speech_noisy.pcm
14 misc2.pcm
15 purenb.pcm
16 sawsweep_380_60.pcm
17 sinesweep.pcm
[all …]
DruniSACRate.txt8 …exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_1.pcm > $LOGG
9 …xt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_2.pcm >> $LOGG
10 …xe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_3.pcm >> $LOGG
11 …xt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_4.pcm >> $LOGG
12 …xe 13000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_5.pcm >> $LOGG
13 …xt -FIXED_FL -FL 60 -MAXRATE 32000 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_6.pcm >> $LOGG
14 …TE 32000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_7.pcm >> $LOGG
16 …ny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/longspeech.pcm $OUTDIR/out_napi_11.pcm >> $LOGG
17 …ks.txt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/longspeech.pcm $OUTDIR/out_napi_12.pcm >> $LOGG
18 …ny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/longspeech.pcm $OUTDIR/out_napi_13.pcm >> $LOGG
[all …]
DdiffiSACPLC.txt10 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
15 diff $OUTDIR1/outplc6.pcm $OUTDIR2/outplc6.pcm
DruniSACPLC.txt13 $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
18 $ISAC 32000 -PL 15 $INDIR/tone_cisco.pcm $OUTDIR/outplc6.pcm
DInputFilesFew.txt1 DTMF_16kHz_short.pcm
2 ltest_speech_noisy.pcm
3 misc2.pcm
4 sinesweep.pcm
5 speechmusic.pcm
6 tone_cisco.pcm
/external/tinyalsa/
Dpcm.c243 struct pcm { struct
262 unsigned int pcm_get_buffer_size(struct pcm *pcm) in pcm_get_buffer_size() argument
264 return pcm->buffer_size; in pcm_get_buffer_size()
267 const char* pcm_get_error(struct pcm *pcm) in pcm_get_error() argument
269 return pcm->error; in pcm_get_error()
272 unsigned int pcm_get_subdevice(struct pcm *pcm) in pcm_get_subdevice() argument
274 return pcm->subdevice; in pcm_get_subdevice()
277 static int oops(struct pcm *pcm, int e, const char *fmt, ...) in oops() argument
283 vsnprintf(pcm->error, PCM_ERROR_MAX, fmt, ap); in oops()
285 sz = strlen(pcm->error); in oops()
[all …]
Dtinycap.c199 struct pcm *pcm; in capture_sample() local
217 pcm = pcm_open(card, device, PCM_IN, &config); in capture_sample()
218 if (!pcm || !pcm_is_ready(pcm)) { in capture_sample()
220 pcm_get_error(pcm)); in capture_sample()
224 size = pcm_frames_to_bytes(pcm, pcm_get_buffer_size(pcm)); in capture_sample()
229 pcm_close(pcm); in capture_sample()
240 while (capturing && !pcm_read(pcm, buffer, size)) { in capture_sample()
254 frames = pcm_bytes_to_frames(pcm, bytes_read); in capture_sample()
256 pcm_close(pcm); in capture_sample()
Dtinyplay.c218 struct pcm *pcm; in play_sample() local
242 pcm = pcm_open(card, device, PCM_OUT, &config); in play_sample()
243 if (!pcm || !pcm_is_ready(pcm)) { in play_sample()
245 device, pcm_get_error(pcm)); in play_sample()
249 size = pcm_frames_to_bytes(pcm, pcm_get_buffer_size(pcm)); in play_sample()
254 pcm_close(pcm); in play_sample()
267 if (pcm_write(pcm, buffer, num_read)) { in play_sample()
276 pcm_close(pcm); in play_sample()
/external/tinyalsa/include/tinyalsa/
Dasoundlib.h43 struct pcm;
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);
194 int pcm_get_config(struct pcm *pcm, struct pcm_config *config);
195 int pcm_set_config(struct pcm *pcm, struct pcm_config *config);
198 const char *pcm_get_error(struct pcm *pcm);
208 unsigned int pcm_get_buffer_size(struct pcm *pcm);
209 unsigned int pcm_frames_to_bytes(struct pcm *pcm, unsigned int frames);
210 unsigned int pcm_bytes_to_frames(struct pcm *pcm, unsigned int bytes);
[all …]
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/QA/
DruniSACLongtest.txt152 $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_API
[all …]
DruniSACfault.txt40 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
/external/clang/test/Modules/
Drebuild.m5 // RUN: touch -m -a -t 201101010000 %t/Module.pcm
6 // RUN: cp %t/Module.pcm %t/Module.pcm.saved
7 // RUN: wc -c %t/Module.pcm > %t/Module.size.saved
11 // RUN: diff %t/Module.pcm %t/Module.pcm.saved
12 // RUN: cp %t/DependsOnModule.pcm %t/DependsOnModule.pcm.saved
15 // RUN: rm %t/Module.pcm
17 // RUN: touch -m -a -t 201101010000 %t/Module.pcm
18 // RUN: wc -c %t/Module.pcm > %t/Module.size
20 // RUN: cp %t/Module.pcm %t/Module.pcm.saved.2
25 // RUN: diff %t/Module.pcm %t/Module.pcm.saved.2
[all …]
DWerror.m9 // RUN: cp %t/Module.pcm %t-saved/Module.pcm
14 // RUN: diff %t/Module.pcm %t-saved/Module.pcm
20 // RUN: not diff %t/Module.pcm %t-saved/Module.pcm
21 // RUN: cp %t/Module.pcm %t-saved/Module.pcm
27 // RUN: diff %t/Module.pcm %t-saved/Module.pcm
33 // RUN: not diff %t/Module.pcm %t-saved/Module.pcm
34 // RUN: cp %t/Module.pcm %t-saved/Module.pcm
42 // RUN-DISABLED: diff %t/Module.pcm %t-saved/Module.pcm
48 // RUN: cp %t/Module.pcm %t-saved/Module.pcm
52 // RUN: not diff %t/Module.pcm %t-saved/Module.pcm
[all …]
Ddependency-gen.modulemap4 …-pch -fmodules-strict-decluse %s -dependency-file - -MT implicit.pcm -o %t/implicit.pcm -fmodules-…
6 …h -fmodules-strict-decluse Inputs/dependency-gen-base.modulemap -o %t/base.pcm -fmodule-map-file-h…
7 …fmodules-strict-decluse -fmodule-file=%t/base.pcm %s -dependency-file - -MT explicit.pcm -o %t/exp…
9 …include Inputs/dependency-gen.h -x c++ /dev/null -fmodule-file=%t/explicit.pcm -MT main.o -fsyntax…
18 // referenced by the .pcm are also dependencies of this build.
29 // dependencies of the explicitly-specified .pcm input).
31 // EXPLICIT: {{^}}explicit.pcm:
35 // EXPLICIT: base.pcm
41 // EXPLICIT-USE-NOT: base.pcm
42 // EXPLICIT-USE: explicit.pcm
[all …]
Dvalidate-system-headers.m9 // RUN: cp %t/ModuleCache/Foo.pcm %t/Foo.pcm.saved
13 // The pcm file in the cache should fail to validate.
16 // RUN: diff %t/ModuleCache/Foo.pcm %t/Foo.pcm.saved
21 // RUN: not diff %t/ModuleCache/Foo.pcm %t/Foo.pcm.saved
26 // RUN: cp %t/ModuleCache/Foo.pcm %t/Foo.pcm.saved
28 // RUN: diff %t/ModuleCache/Foo.pcm %t/Foo.pcm.saved
35 // RUN: diff %t/ModuleCache/Foo.pcm %t/Foo.pcm.saved
39 // RUN: not diff %t/ModuleCache/Foo.pcm %t/Foo.pcm.saved
Dadd-remove-private.m8 // RUN: cp %t.mcp/AddRemovePrivate.pcm %t/with.pcm
13 // RUN: not diff %t.mcp/AddRemovePrivate.pcm %t/with.pcm
14 // RUN: cp %t.mcp/AddRemovePrivate.pcm %t/without.pcm
21 // RUN: not diff %t.mcp/AddRemovePrivate.pcm %t/without.pcm
Dprune.m17 // RUN: ls -R %t | grep ^Module.*pcm
18 // RUN: ls -R %t | grep DependsOnModule.*pcm
25 // RUN: ls -R %t | grep ^Module.*pcm
26 // RUN: ls -R %t | grep DependsOnModule.*pcm
31 // RUN: find %t -name DependsOnModule*.pcm | xargs touch -a -t 201101010000
34 // RUN: ls -R %t | grep ^Module.*pcm
35 // RUN: ls -R %t | grep DependsOnModule.*pcm
37 // Set both timestamp and DependsOnModule.pcm back beyond the cutoff.
40 // RUN: find %t -name DependsOnModule*.pcm | xargs touch -a -t 201101010000
43 // RUN: ls -R %t | grep ^Module.*pcm
[all …]
DWerror-Wsystem-headers.m8 // RUN: cp %t/cstd.pcm %t-saved/cstd.pcm
13 // RUN: diff %t/cstd.pcm %t-saved/cstd.pcm
19 // RUN: not diff %t/cstd.pcm %t-saved/cstd.pcm
Dempty.modulemap5 // RUN: -emit-module -fmodule-name=empty -o %t/base.pcm \
10 // RUN: -emit-module -fmodule-name=empty -o %t/check.pcm \
14 // RUN: diff %t/base.pcm %t/check.pcm
18 // RUN: wc -c %t/base.pcm | FileCheck --check-prefix=CHECK-SIZE %s
/external/webrtc/webrtc/modules/
Dmodules_unittests.isolate27 '<(DEPTH)/resources/audio_coding/neteq4_universal_ref.pcm',
28 '<(DEPTH)/resources/audio_coding/neteq4_universal_ref_win_32.pcm',
29 '<(DEPTH)/resources/audio_coding/neteq4_universal_ref_win_64.pcm',
31 '<(DEPTH)/resources/audio_coding/speech_mono_16kHz.pcm',
32 '<(DEPTH)/resources/audio_coding/speech_mono_32_48kHz.pcm',
33 '<(DEPTH)/resources/audio_coding/testfile32kHz.pcm',
34 '<(DEPTH)/resources/audio_coding/teststereo32kHz.pcm',
35 '<(DEPTH)/resources/audio_device/audio_short16.pcm',
36 '<(DEPTH)/resources/audio_device/audio_short44.pcm',
37 '<(DEPTH)/resources/audio_device/audio_short48.pcm',
[all …]
/external/libopus/tests/
Dopus_encode_regressions.c69 static const short pcm[320] = in celt_ec_internal_error() local
108 err = opus_multistream_encode(enc, pcm, 320, data, 2460); in celt_ec_internal_error()
125 static const short pcm[160] = in celt_ec_internal_error() local
146 err = opus_multistream_encode(enc, pcm, 160, data, 2460); in celt_ec_internal_error()
163 static const short pcm[160] = in celt_ec_internal_error() local
184 err = opus_multistream_encode(enc, pcm, 160, data, 2460); in celt_ec_internal_error()
201 static const short pcm[160] = in celt_ec_internal_error() local
222 err = opus_multistream_encode(enc, pcm, 160, data, 2460); in celt_ec_internal_error()
239 static const short pcm[160] = in celt_ec_internal_error() local
258 err = opus_multistream_encode(enc, pcm, 160, data, 2460); in celt_ec_internal_error()
[all …]
Dopus_decode_fuzzer.c64 opus_int16 *pcm; in LLVMFuzzerTestOneInput() local
82 pcm = (opus_int16*) malloc(sizeof(*pcm) * MAX_FRAME_SAMP * toc.channels); in LLVMFuzzerTestOneInput()
109 (void) opus_decode(dec, NULL, size, pcm, frame_size, fec); in LLVMFuzzerTestOneInput()
114 memcpy(pcm, &data[i + SETUP_BYTE_COUNT], len); in LLVMFuzzerTestOneInput()
115 (void) opus_decode(dec, data, size, pcm, MAX_FRAME_SAMP, fec); in LLVMFuzzerTestOneInput()
122 free(pcm); in LLVMFuzzerTestOneInput()
/external/libopus/src/
Dopus_decoder.c221 opus_int32 len, opus_val16 *pcm, int frame_size, int decode_fec) in opus_decode_frame() argument
288 pcm[i] = 0; in opus_decode_frame()
298 int ret = opus_decode_frame(st, NULL, 0, pcm, IMIN(audiosize, F20), 0); in opus_decode_frame()
304 pcm += ret*st->channels; in opus_decode_frame()
366 pcm_ptr = pcm; in opus_decode_frame()
519 len, pcm, celt_frame_size, &dec, celt_accum); in opus_decode_frame()
525 pcm[i] = 0; in opus_decode_frame()
532 celt_decode_with_ec(celt_dec, silence, 2, pcm, F2_5, NULL, celt_accum); in opus_decode_frame()
540 pcm[i] = SAT16(ADD32(pcm[i], pcm_silk[i])); in opus_decode_frame()
543 pcm[i] = pcm[i] + (opus_val16)((1.f/32768.f)*pcm_silk[i]); in opus_decode_frame()
[all …]
/external/clang/test/Driver/
Dmodules.m41 // RUN: %clang -fmodules -fmodule-file=foo.pcm -fmodule-file=bar.pcm -### %s 2>&1 | FileCheck -chec…
43 // CHECK-MODULE-FILES: "-fmodule-file=foo.pcm"
44 // CHECK-MODULE-FILES: "-fmodule-file=bar.pcm"
46 // RUN: %clang -fno-modules -fmodule-file=foo.pcm -fmodule-file=bar.pcm -### %s 2>&1 | FileCheck -c…
48 // CHECK-NO-MODULE-FILES-NOT: "-fmodule-file=foo.pcm"
49 // CHECK-NO-MODULE-FILES-NOT: "-fmodule-file=bar.pcm"

1234567891011