Mercurial > libavcodec.hg
diff mpegvideo.c @ 12506:747e5f278c4b libavcodec
The debug text output of macroblocks can indicate MB_TYPE_INTERLACED,
but it used to do it only for h264 codec.
Allow it for other codecs, as mpeg2 and mpeg4 also set this flag.
author | iive |
---|---|
date | Tue, 21 Sep 2010 22:44:27 +0000 |
parents | ffb3668ff7af |
children |
line wrap: on
line diff
--- a/mpegvideo.c Tue Sep 21 17:57:21 2010 +0000 +++ b/mpegvideo.c Tue Sep 21 22:44:27 2010 +0000 @@ -1262,7 +1262,7 @@ av_log(s->avctx, AV_LOG_DEBUG, "?"); - if(IS_INTERLACED(mb_type) && s->codec_id == CODEC_ID_H264) + if(IS_INTERLACED(mb_type)) av_log(s->avctx, AV_LOG_DEBUG, "="); else av_log(s->avctx, AV_LOG_DEBUG, " ");