diff options
author | Anton Khirnov <anton@khirnov.net> | 2023-05-01 14:03:56 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-05-07 15:47:25 +0200 |
commit | 6deaf1e40949b1daa2dfe23e9643e1758f52d29c (patch) | |
tree | be40fe5560017f3eb5cbd5b25476f2a542435cae | |
parent | c2ae8e30b7f3629b097eb0db89e509756ed923e8 (diff) | |
download | ffmpeg-6deaf1e40949b1daa2dfe23e9643e1758f52d29c.tar.gz |
lavf/demux: export codec-level framerate in avformat_find_stream_info()
-rw-r--r-- | libavformat/demux.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/demux.c b/libavformat/demux.c index 45e5f5c4c2..2a32bde7f5 100644 --- a/libavformat/demux.c +++ b/libavformat/demux.c @@ -2878,6 +2878,7 @@ int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options) st->r_frame_rate.den = st->time_base.num; } } + st->codecpar->framerate = avctx->framerate; if (sti->display_aspect_ratio.num && sti->display_aspect_ratio.den) { AVRational hw_ratio = { avctx->height, avctx->width }; st->sample_aspect_ratio = av_mul_q(sti->display_aspect_ratio, |