From 93afb6c98df876b15e3d911a9450ad55f92080ce Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sun, 11 May 2014 18:00:48 +0200 Subject: [PATCH] avconv: set output avg_frame_rate when known --- avconv.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/avconv.c b/avconv.c index 84860f6..608203c 100644 --- a/avconv.c +++ b/avconv.c @@ -1850,6 +1850,8 @@ static int transcode_init(void) ost->filter->filter->inputs[0]->sample_aspect_ratio; enc_ctx->pix_fmt = ost->filter->filter->inputs[0]->format; + ost->st->avg_frame_rate = ost->frame_rate; + if (dec_ctx && (enc_ctx->width != dec_ctx->width || enc_ctx->height != dec_ctx->height || -- 2.7.4