diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-08-18 15:08:26 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-08-22 11:36:43 +0200 |
commit | f23e3ce8589629623db978ad70967eb37f7fac35 (patch) | |
tree | 4b3fd2e018eba475147712acf68f2fff41d4f4db /fftools/ffmpeg.h | |
parent | 14726571ddbf5981a1eeadf3c06eeb44b89589ae (diff) | |
download | ffmpeg-f23e3ce8589629623db978ad70967eb37f7fac35.tar.gz |
fftools/ffmpeg: call av_guess_frame_rate() when opening the file
It is currently called when configuring the filter, which races with the
demuxer thread.
Diffstat (limited to 'fftools/ffmpeg.h')
-rw-r--r-- | fftools/ffmpeg.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h index 44cc23fa84..921e579c32 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -334,6 +334,8 @@ typedef struct InputStream { AVFrame *decoded_frame; AVPacket *pkt; + AVRational framerate_guessed; + int64_t prev_pkt_pts; int64_t start; /* time when read started */ /* predicted dts of the next packet read for this stream or (when there are |