diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-02-04 15:30:37 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-02-04 15:30:37 +0000 |
commit | 3102d180bbcba2c960ed1cfd5c6a1954679c0280 (patch) | |
tree | 33138926e542abf8d6fc553654ecc225c6084829 /libavcodec/h264_ps.c | |
parent | ed3e91489bc38b8ec15908c6d11eabd032bcbcbc (diff) | |
download | ffmpeg-3102d180bbcba2c960ed1cfd5c6a1954679c0280.tar.gz |
Fix large timebases.
Fixed issue1633
Originally committed as revision 21636 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264_ps.c')
-rw-r--r-- | libavcodec/h264_ps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_ps.c b/libavcodec/h264_ps.c index 423ffe8a71..6b9e6e9427 100644 --- a/libavcodec/h264_ps.c +++ b/libavcodec/h264_ps.c @@ -176,7 +176,7 @@ static inline int decode_vui_parameters(H264Context *h, SPS *sps){ if(sps->timing_info_present_flag){ sps->num_units_in_tick = get_bits_long(&s->gb, 32); sps->time_scale = get_bits_long(&s->gb, 32); - if(sps->num_units_in_tick-1 > 0x7FFFFFFEU || sps->time_scale-1 > 0x7FFFFFFEU){ + if(!sps->num_units_in_tick || !sps->time_scale){ av_log(h->s.avctx, AV_LOG_ERROR, "time_scale/num_units_in_tick invalid or unsupported (%d/%d)\n", sps->time_scale, sps->num_units_in_tick); return -1; } |