From 481c843a47671d17f7e19392d33ee8089b950e4a Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 4 Dec 2012 15:50:33 +0000 Subject: [PATCH] rawvideodec: set bit rate Fixes #1989. Signed-off-by: Paul B Mahol --- libavformat/rawvideodec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/rawvideodec.c b/libavformat/rawvideodec.c index b2ca663d0b..a35f957fdd 100644 --- a/libavformat/rawvideodec.c +++ b/libavformat/rawvideodec.c @@ -72,6 +72,8 @@ static int rawvideo_read_header(AVFormatContext *ctx) st->codec->width = width; st->codec->height = height; st->codec->pix_fmt = pix_fmt; + st->codec->bit_rate = av_rescale_q(avpicture_get_size(st->codec->pix_fmt, width, height), + (AVRational){8,1}, st->time_base); return 0; }