/third_party/ffmpeg/tests/fate/ |
H A D | libswresample.mak | 16 FATE_SWR_RESAMPLE += fate-swr-resample-$(3)-$(1)-$(2) 17 fate-swr-resample-$(3)-$(1)-$(2): tests/data/asynth-$(1)-1.wav 18 fate-swr-resample-$(3)-$(1)-$(2): CMD = ffmpeg -i $(TARGET_PATH)/tests/data/asynth-$(1)-1.wav -af atrim=end_sample=10240,aresample=$(2):internal_sample_fmt=$(3):exact_rational=0:linear_interp=0,aformat=$(3),aresample=$(1):internal_sample_fmt=$(3):exact_rational=0:linear_interp=0 -f wav -c:a pcm_s16le - 20 fate-swr-resample-$(3)-$(1)-$(2): CMP = stddev 21 fate-swr-resample-$(3)-$(1)-$(2): CMP_UNIT = $(5) 22 fate-swr-resample-$(3)-$(1)-$(2): FUZZ = 0.1 23 fate-swr-resample-$(3)-$(1)-$(2): REF = tests/data/asynth-$(1)-1.wav 28 #make -k `make fate-list | grep swr` | egrep 'TEST|stddev' | tr '\n' '@' | sed 's#TEST *\([^@]*\)@stddev: *\([0-9.]*\)[^b@]*bytes: *\([0-9]*\) */ *\([0-9]*\)@#fate-\1: CMP_TARGET = \2@fate-\1: SIZE_TOLERANCE = \3 - \4@@#g' | tr '@' '\n' 30 fate-swr-resample-dblp-2626-44100: CMP_TARGET = 1352.67 31 fate-swr [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | af_aresample.c | 41 struct SwrContext *swr; member 51 aresample->swr = swr_alloc(); in preinit() 52 if (!aresample->swr) in preinit() 61 swr_free(&aresample->swr); in uninit() 80 av_opt_set_int(aresample->swr, "osr", aresample->sample_rate_arg, 0); in query_formats() 81 av_opt_get_sample_fmt(aresample->swr, "osf", 0, &out_format); in query_formats() 82 av_opt_get_int(aresample->swr, "osr", 0, &out_rate); in query_formats() 114 av_opt_get_chlayout(aresample->swr, "ochl", 0, &out_layout); in query_formats() 137 ret = swr_alloc_set_opts2(&aresample->swr, in config_output() 144 ret = swr_init(aresample->swr); in config_output() [all...] |
H A D | af_pan.c | 54 struct SwrContext *swr; member 294 ret = swr_alloc_set_opts2(&pan->swr, in config_props() 316 av_opt_set_int(pan->swr, "uch", pan->nb_output_channels, 0); in config_props() 317 swr_set_channel_mapping(pan->swr, pan->channel_map); in config_props() 336 swr_set_matrix(pan->swr, pan->gain[0], pan->gain[1] - pan->gain[0]); in config_props() 339 r = swr_init(pan->swr); in config_props() 379 swr_convert(pan->swr, outsamples->extended_data, n, in filter_frame() 399 swr_free(&pan->swr); in uninit()
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/src/main/cpp/audio/ |
H A D | FFMpegExtractor.cpp | 207 SwrContext *swr = swr_alloc(); in decode() local 208 av_opt_set_int(swr, "in_channel_count", stream->codecpar->channels, 0); in decode() 209 av_opt_set_int(swr, "out_channel_count", targetProperties.channelCount, 0); in decode() 210 av_opt_set_int(swr, "in_channel_layout", stream->codecpar->channel_layout, 0); in decode() 211 av_opt_set_int(swr, "out_channel_layout", outChannelLayout, 0); in decode() 212 av_opt_set_int(swr, "in_sample_rate", stream->codecpar->sample_rate, 0); in decode() 213 av_opt_set_int(swr, "out_sample_rate", targetProperties.sampleRate, 0); in decode() 214 av_opt_set_int(swr, "in_sample_fmt", stream->codecpar->format, 0); in decode() 215 av_opt_set_sample_fmt(swr, "out_sample_fmt", AV_SAMPLE_FMT_FLT, 0); in decode() 216 av_opt_set_int(swr, "force_resamplin in decode() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | opusdec.c | 90 ret = swr_convert(s->swr, in opus_flush_resample() 135 av_opt_set_int(s->swr, "in_sample_rate", s->silk_samplerate, 0); in opus_init_resample() 136 ret = swr_init(s->swr); in opus_init_resample() 142 ret = swr_convert(s->swr, in opus_init_resample() 188 if (!swr_is_initialized(s->swr)) { in opus_decode_frame() 202 samples = swr_convert(s->swr, in opus_decode_frame() 346 if (swr_is_initialized(s->swr)) { in opus_decode_subpacket() 349 av_opt_get_int(s->swr, "in_sample_rate", 0, &cur_samplerate); in opus_decode_subpacket() 379 swr_close(s->swr); in opus_decode_subpacket() 581 swr_close(s->swr); in opus_decode_flush() [all...] |
H A D | opus.h | 135 SwrContext *swr; member
|
/third_party/ffmpeg/libswresample/ |
H A D | swresample.h | 51 * SwrContext *swr = swr_alloc(); 52 * av_opt_set_channel_layout(swr, "in_channel_layout", AV_CH_LAYOUT_5POINT1, 0); 53 * av_opt_set_channel_layout(swr, "out_channel_layout", AV_CH_LAYOUT_STEREO, 0); 54 * av_opt_set_int(swr, "in_sample_rate", 48000, 0); 55 * av_opt_set_int(swr, "out_sample_rate", 44100, 0); 56 * av_opt_set_sample_fmt(swr, "in_sample_fmt", AV_SAMPLE_FMT_FLTP, 0); 57 * av_opt_set_sample_fmt(swr, "out_sample_fmt", AV_SAMPLE_FMT_S16, 0); 62 * SwrContext *swr = NULL; 63 * int ret = swr_alloc_set_opts2(&swr, // we're allocating a new context 81 * Note that the samples may get buffered in swr i [all...] |
/third_party/node/deps/openssl/config/archs/linux64-mips64/asm/crypto/aes/ |
H A D | aes-mips.S | 560 swr $8,0+0($5) 561 swr $9,4+0($5) 562 swr $10,8+0($5) 563 swr $11,12+0($5) 1132 swr $8,0+0($5) 1133 swr $9,4+0($5) 1134 swr $10,8+0($5) 1135 swr $11,12+0($5)
|
/third_party/node/deps/openssl/config/archs/linux64-mips64/asm_avx2/crypto/aes/ |
H A D | aes-mips.S | 560 swr $8,0+0($5) 561 swr $9,4+0($5) 562 swr $10,8+0($5) 563 swr $11,12+0($5) 1132 swr $8,0+0($5) 1133 swr $9,4+0($5) 1134 swr $10,8+0($5) 1135 swr $11,12+0($5)
|
/third_party/node/deps/openssl/openssl/crypto/aes/asm/ |
H A D | aes-mips.pl | 700 swr $s0,0+$LSB($out) 701 swr $s1,4+$LSB($out) 702 swr $s2,8+$LSB($out) 703 swr $s3,12+$LSB($out) 1301 swr $s0,0+$LSB($out) 1302 swr $s1,4+$LSB($out) 1303 swr $s2,8+$LSB($out) 1304 swr $s3,12+$LSB($out) 2195 # convert lwl/lwr and swr/swl to little-endian order
|
/third_party/openssl/crypto/aes/asm/ |
H A D | aes-mips.pl | 700 swr $s0,0+$LSB($out) 701 swr $s1,4+$LSB($out) 702 swr $s2,8+$LSB($out) 703 swr $s3,12+$LSB($out) 1301 swr $s0,0+$LSB($out) 1302 swr $s1,4+$LSB($out) 1303 swr $s2,8+$LSB($out) 1304 swr $s3,12+$LSB($out) 2195 # convert lwl/lwr and swr/swl to little-endian order
|
/third_party/node/deps/v8/src/diagnostics/mips64/ |
H A D | disasm-mips64.cc | 2166 Format(instr, "swr 'rt, 'imm16s('rs)"); in DecodeTypeImmediate()
|
/third_party/node/deps/v8/src/builtins/mips/ |
H A D | builtins-mips.cc | 3370 __ swr(t8, MemOperand(a0)); in Generate_MemCopyUint8Uint8() 3534 __ swr(v1, MemOperand(a0)); in Generate_MemCopyUint8Uint8()
|
/third_party/node/deps/v8/src/codegen/s390/ |
H A D | constants-s390.h | 1513 V(swr, SWR, 0x2F) /* type = RR SUBTRACT UNNORMALIZED (long HFP) */ \
|
/third_party/node/deps/v8/src/codegen/mips64/ |
H A D | assembler-mips64.h | 587 void swr(Register rd, const MemOperand& rs);
|
H A D | macro-assembler-mips64.cc | 1171 swr(rd, MemOperand(source.rm(), source.offset() + kMipsSwrOffset)); in CallRecordWriteStub()
|
H A D | assembler-mips64.cc | 2200 void Assembler::swr(Register rd, const MemOperand& rs) { in swr() function in v8::internal::Assembler
|
/third_party/node/deps/v8/src/codegen/mips/ |
H A D | assembler-mips.h | 551 void swr(Register rd, const MemOperand& rs);
|
H A D | assembler-mips.cc | 2127 void Assembler::swr(Register rd, const MemOperand& rs) { in swr() function in v8::internal::Assembler
|
H A D | macro-assembler-mips.cc | 1059 swr(rd, MemOperand(source.rm(), source.offset() + kMipsSwrOffset)); in CallRecordWriteStub()
|