[FFmpeg-cvslog] fftools/ffmpeg_demux: do not set AVCodecContext.framerate

Anton Khirnov git at videolan.org
Mon Jun 5 17:30:57 EEST 2023


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Sun May 28 12:16:28 2023 +0200| [c7a05ac117bc4152b27aa6127d67cb5bc0f09271] | committer: Anton Khirnov

fftools/ffmpeg_demux: do not set AVCodecContext.framerate

For decoding, this field is used by the decoder to export information
to the caller; it does not make sense for the caller to set it.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c7a05ac117bc4152b27aa6127d67cb5bc0f09271
---

 fftools/ffmpeg_demux.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/fftools/ffmpeg_demux.c b/fftools/ffmpeg_demux.c
index 5c15b8bad3..5e5f106368 100644
--- a/fftools/ffmpeg_demux.c
+++ b/fftools/ffmpeg_demux.c
@@ -1194,9 +1194,6 @@ static void add_input_streams(const OptionsContext *o, Demuxer *d)
 
         switch (par->codec_type) {
         case AVMEDIA_TYPE_VIDEO:
-            // avformat_find_stream_info() doesn't set this for us anymore.
-            ist->dec_ctx->framerate = st->avg_frame_rate;
-
             MATCH_PER_STREAM_OPT(frame_rates, str, framerate, ic, st);
             if (framerate && av_parse_video_rate(&ist->framerate,
                                                  framerate) < 0) {



More information about the ffmpeg-cvslog mailing list