From b5e40e15a3e35f0b48345b949a86f8862bca3b8b Mon Sep 17 00:00:00 2001 From: Andrey Morozov Date: Wed, 7 May 2014 15:55:02 -0300 Subject: command: improve video-bitrate property Signed-off-by: wm4 Includes some cosmetic changes over the original PR. --- demux/demux_lavf.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'demux') diff --git a/demux/demux_lavf.c b/demux/demux_lavf.c index 9559c73260..0d33219dd9 100644 --- a/demux/demux_lavf.c +++ b/demux/demux_lavf.c @@ -477,7 +477,10 @@ static void handle_stream(demuxer_t *demuxer, int i) else sh_video->aspect = codec->width * codec->sample_aspect_ratio.num / (float)(codec->height * codec->sample_aspect_ratio.den); + sh_video->bitrate = codec->bit_rate; + if (sh_video->bitrate == 0) + sh_video->bitrate = avfc->bit_rate; AVDictionaryEntry *rot = av_dict_get(st->metadata, "rotate", NULL, 0); if (rot && rot->value) { -- cgit v1.2.3