summaryrefslogtreecommitdiff
path: root/libavcodec/eamad.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-05-07 17:48:04 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-05-07 17:48:04 +0200
commita779602584b43578e8baa69b367ba7d64e973dd0 (patch)
tree39159c8e30092778b28c0facff66ee8e7c129e9e /libavcodec/eamad.c
parenteeb48353abaab335a1fc9cc448a5691330325a09 (diff)
downloadffmpeg-a779602584b43578e8baa69b367ba7d64e973dd0.tar.gz
avcodec/eamad: silence uninitialized variable warnings
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/eamad.c')
-rw-r--r--libavcodec/eamad.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/eamad.c b/libavcodec/eamad.c
index 2d34d35a54..c043305785 100644
--- a/libavcodec/eamad.c
+++ b/libavcodec/eamad.c
@@ -195,7 +195,7 @@ static int decode_motion(GetBitContext *gb)
static int decode_mb(MadContext *s, AVFrame *frame, int inter)
{
int mv_map = 0;
- int mv_x, mv_y;
+ int av_uninit(mv_x), av_uninit(mv_y);
int j;
if (inter) {