mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ffmpeg: poll filters even after -t limit.
If not, frames can still arrive to the sink and accumulate. The frames past recording time will be ignored in do_*_out.
This commit is contained in:
parent
665100c2f1
commit
5997285d3a
2
ffmpeg.c
2
ffmpeg.c
@ -1948,7 +1948,7 @@ static int poll_filters(void)
|
||||
avcodec_get_frame_defaults(ost->filtered_frame);
|
||||
filtered_frame = ost->filtered_frame;
|
||||
|
||||
while (!ost->is_past_recording_time) {
|
||||
while (1) {
|
||||
ret = av_buffersink_get_buffer_ref(ost->filter->filter, &picref,
|
||||
AV_BUFFERSINK_FLAG_NO_REQUEST);
|
||||
if (ret < 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user