diff options
author | Martin Vignali <martin.vignali@gmail.com> | 2017-11-06 23:59:00 +0100 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-11-06 21:23:19 -0300 |
commit | 7e1f21148dfdf7f6477b17a7c77e4406fe4650a6 (patch) | |
tree | 68cec55558706f620ac1f021ca844247693347f2 | |
parent | 0380b72d35a092f3089af52e57dee0d848bc2b9f (diff) | |
download | ffmpeg-7e1f21148dfdf7f6477b17a7c77e4406fe4650a6.tar.gz |
libavcodec/mepgvideo : remove warning introduce by previous patch
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/mpegvideo.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 080e9077fc..2eb19c21bb 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -1453,7 +1453,6 @@ void ff_print_debug_info2(AVCodecContext *avctx, AVFrame *pict, uint8_t *mbskip_ const int mv_stride = (mb_width << mv_sample_log2) + (avctx->codec->id == AV_CODEC_ID_H264 ? 0 : 1); int mb_x, mb_y, mbcount = 0; - int ret; /* size is width * height * 2 * 4 where 2 is for directions and 4 is * for the maximum number of MB (4 MB in case of IS_8x8) */ @@ -1609,7 +1608,7 @@ void ff_print_debug_info2(AVCodecContext *avctx, AVFrame *pict, uint8_t *mbskip_ if ((avctx->debug & (FF_DEBUG_VIS_QP | FF_DEBUG_VIS_MB_TYPE)) || (avctx->debug_mv)) { int mb_y; - int i; + int i, ret; int h_chroma_shift, v_chroma_shift, block_height; const int mv_sample_log2 = avctx->codec_id == AV_CODEC_ID_H264 || avctx->codec_id == AV_CODEC_ID_SVQ3 ? 2 : 1; const int mv_stride = (mb_width << mv_sample_log2) + |