diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-09-02 21:02:31 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-09-02 21:10:36 +0200 |
commit | d9b56895b5812e59ebda42b7d8ce221bd50f9f03 (patch) | |
tree | 8325fa9c426e01b2fc434fcc52193b69f9a622cb /libavcodec/wmv2dec.c | |
parent | 5b6a50e15006d758ba308d5576a450406cd433f6 (diff) | |
download | ffmpeg-d9b56895b5812e59ebda42b7d8ce221bd50f9f03.tar.gz |
avcodec/mpegvideo: change bit_rate to 64bit
32bit is not sufficient for all cases
Fixes: signal_sigabrt_7ffff6ac8cc9_686_cov_1897408623_microsoft_new_way_to_shove_mpeg2_in_asf.dvr_ms
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/wmv2dec.c')
-rw-r--r-- | libavcodec/wmv2dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmv2dec.c b/libavcodec/wmv2dec.c index cd17358287..99c95d397a 100644 --- a/libavcodec/wmv2dec.c +++ b/libavcodec/wmv2dec.c @@ -108,7 +108,7 @@ static int decode_ext_header(Wmv2Context *w) if (s->avctx->debug & FF_DEBUG_PICT_INFO) av_log(s->avctx, AV_LOG_DEBUG, - "fps:%d, br:%d, qpbit:%d, abt_flag:%d, j_type_bit:%d, " + "fps:%d, br:%"PRId64", qpbit:%d, abt_flag:%d, j_type_bit:%d, " "tl_mv_flag:%d, mbrl_bit:%d, code:%d, loop_filter:%d, " "slices:%d\n", fps, s->bit_rate, w->mspel_bit, w->abt_flag, w->j_type_bit, |