mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
Move aspect ratio 0/0 avoidance code so the values in the sps struct are not missed.
This preempts issues with av_cmp_q(0/0, X) Originally committed as revision 25337 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -387,6 +387,9 @@ int ff_h264_decode_seq_parameter_set(H264Context *h){
|
||||
if (decode_vui_parameters(h, sps) < 0)
|
||||
goto fail;
|
||||
|
||||
if(!sps->sar.den)
|
||||
sps->sar.den= 1;
|
||||
|
||||
if(s->avctx->debug&FF_DEBUG_PICT_INFO){
|
||||
av_log(h->s.avctx, AV_LOG_DEBUG, "sps:%u profile:%d/%d poc:%d ref:%d %dx%d %s %s crop:%d/%d/%d/%d %s %s %d/%d\n",
|
||||
sps_id, sps->profile_idc, sps->level_idc,
|
||||
|
Reference in New Issue
Block a user