Searched refs:end_sample (Results 1 – 9 of 9) sorted by relevance
/third_party/ffmpeg/libavfilter/ |
D | trim.c | 49 int64_t start_sample, end_sample; member 226 int64_t start_sample, end_sample; in atrim_filter_frame() local 270 if (s->end_sample == INT64_MAX && s->end_pts == AV_NOPTS_VALUE && !s->duration_tb) { in atrim_filter_frame() 271 end_sample = frame->nb_samples; in atrim_filter_frame() 274 end_sample = 0; in atrim_filter_frame() 276 if (s->end_sample != INT64_MAX && in atrim_filter_frame() 277 s->nb_samples < s->end_sample) { in atrim_filter_frame() 279 end_sample = FFMAX(end_sample, s->end_sample - s->nb_samples); in atrim_filter_frame() 285 end_sample = FFMAX(end_sample, s->end_pts - pts); in atrim_filter_frame() 290 end_sample = FFMAX(end_sample, s->first_pts + s->duration_tb - pts); in atrim_filter_frame() [all …]
|
/third_party/ffmpeg/tests/fate/ |
D | mp3.mak | 6 …a mp3float -i $(TARGET_SAMPLES)/mp3-conformance/he_32khz.bit -af atrim=end_sample=171648 -f f32le - 10 …a mp3float -i $(TARGET_SAMPLES)/mp3-conformance/he_44khz.bit -af atrim=end_sample=471168 -f f32le - 14 …a mp3float -i $(TARGET_SAMPLES)/mp3-conformance/he_48khz.bit -af atrim=end_sample=171648 -f f32le - 18 …:a mp3float -i $(TARGET_SAMPLES)/mp3-conformance/hecommon.bit -af atrim=end_sample=33408 -f f32le - 22 …rs -c:a mp3float -i $(TARGET_SAMPLES)/mp3-conformance/si.bit -af atrim=end_sample=134784 -f f32le - 26 …:a mp3float -i $(TARGET_SAMPLES)/mp3-conformance/si_block.bit -af atrim=end_sample=72576 -f f32le -
|
D | libavresample.mak | 12 …1).wav -ac $(2) -mix_coeff_type $(3) -internal_sample_fmt $(4) -f s16le -af atrim=end_sample=1024 - 37 …ests/data/asynth-$(1)-1.wav -ar $(2) -internal_sample_fmt $(3) -f $(4) -af atrim=end_sample=10240 - 51 …asynth-44100-1.wav -ar 48000 -filter_size 32 -linear_interp 1 -f s16le -af atrim=end_sample=10240 - 58 …ta/asynth-48000-1.wav -ar 44100 -filter_size 0 -phase_shift 0 -f s16le -af atrim=end_sample=10240 -
|
D | monkeysaudio.mak | 5 …filters -i $(TARGET_SAMPLES)/lossless-audio/luckynight-mac$(1)-c2000.ape -af atrim=end_sample=73728 9 …filters -i $(TARGET_SAMPLES)/lossless-audio/luckynight-mac$(1)-c4000.ape -af atrim=end_sample=73728
|
D | libswresample.mak | 18 … CMD = ffmpeg -i $(TARGET_PATH)/tests/data/asynth-$(1)-1.wav -af atrim=end_sample=10240,aresample=… 274 … CMD = ffmpeg -i $(TARGET_PATH)/tests/data/asynth-$(1)-1.wav -af atrim=end_sample=10240,aresample=… 339 … CMD = ffmpeg -i $(TARGET_PATH)/tests/data/asynth-$(1)-1.wav -af atrim=end_sample=10240,aresample=… 362 … CMD = ffmpeg -i $(TARGET_PATH)/tests/data/asynth-$(1)-1.wav -af atrim=end_sample=10240,asetpts=PT… 385 … CMD = ffmpeg -i $(TARGET_PATH)/tests/data/asynth-$(1)-1.wav -af atrim=end_sample=10240,aresample=… 636 … CMD = ffmpeg -i $(TARGET_PATH)/tests/data/asynth-$(1)-1.wav -af atrim=end_sample=10240,asetpts=PT… 719 … CMD = ffmpeg -i $(TARGET_PATH)/tests/data/asynth-$(1)-1.wav -af atrim=end_sample=10240,aresample=… 970 … CMD = ffmpeg -i $(TARGET_PATH)/tests/data/asynth-$(1)-1.wav -af atrim=end_sample=10240,asetpts=PT…
|
D | filter-audio.mak | 257 …trim-mixed: CMD = framecrc -i $(SRC) -af atrim=start=0.05:start_sample=1025:end=0.1:end_sample=4411 260 fate-filter-atrim-samples: CMD = framecrc -i $(SRC) -af atrim=start_sample=26:end_sample=80
|
/third_party/ffmpeg/tests/filtergraphs/ |
D | lavr_mix_output_zero | 1 atrim=end_sample=1024,channelmap=channel_layout=FL|FR|LFE|BC,aformat=channel_layouts=3.0
|
/third_party/ffmpeg/libavformat/ |
D | utils.c | 1675 int64_t end_sample = sample + duration; in read_frame_internal() local 1676 if (duration > 0 && end_sample >= st->internal->first_discard_sample && in read_frame_internal() 1678 discard_padding = FFMIN(end_sample - st->internal->first_discard_sample, duration); in read_frame_internal()
|
/third_party/ffmpeg/doc/ |
D | filters.texi | 2939 @item end_sample 2949 samples that pass through the filter. So start/end_pts and start/end_sample will 2974 ffmpeg -i INPUT -af atrim=end_sample=1000
|