[FFmpeg-cvslog] ffmpeg: forward r_frame_rate to the muxer in case of stream copy
Michael Niedermayer
git at videolan.org
Sun Dec 14 02:22:44 CET 2014
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Dec 14 01:16:39 2014 +0100| [28a6f970f64c4d5c1326dd68393bedf73cc42e10] | committer: Michael Niedermayer
ffmpeg: forward r_frame_rate to the muxer in case of stream copy
Fixes Ticket3629 part2
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=28a6f970f64c4d5c1326dd68393bedf73cc42e10
---
ffmpeg.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/ffmpeg.c b/ffmpeg.c
index eef774b..d38c904 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2740,6 +2740,7 @@ static int transcode_init(void)
sar = dec_ctx->sample_aspect_ratio;
ost->st->sample_aspect_ratio = enc_ctx->sample_aspect_ratio = sar;
ost->st->avg_frame_rate = ist->st->avg_frame_rate;
+ ost->st->r_frame_rate = ist->st->r_frame_rate;
break;
case AVMEDIA_TYPE_SUBTITLE:
enc_ctx->width = dec_ctx->width;
More information about the ffmpeg-cvslog
mailing list