diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2008-09-11 00:34:39 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2008-09-11 00:34:39 +0000 |
commit | 67ce33162aa93bee1a5f9e8d6f00060329fa67da (patch) | |
tree | df1e4558802c4f84f9aa4e2d30b7a50de79d0ee1 | |
parent | 85a51e6bd52d70aba110862fd5b4cfe6160ce1cd (diff) | |
download | ffmpeg-67ce33162aa93bee1a5f9e8d6f00060329fa67da.tar.gz |
Fix incorrect printing of brainfart cropping error in some cases in progressive mode.
Originally committed as revision 15293 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index e888f76100..758d8f576e 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -7090,7 +7090,7 @@ static inline int decode_seq_parameter_set(H264Context *h){ if(sps->crop_left || sps->crop_top){ av_log(h->s.avctx, AV_LOG_ERROR, "insane cropping not completely supported, this could look slightly wrong ...\n"); } - if(sps->crop_right >= 8 || sps->crop_bottom >= (8>> !h->sps.frame_mbs_only_flag)){ + if(sps->crop_right >= 8 || sps->crop_bottom >= (8>> !sps->frame_mbs_only_flag)){ av_log(h->s.avctx, AV_LOG_ERROR, "brainfart cropping not supported, this could look slightly wrong ...\n"); } }else{ |