diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-07 17:48:04 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-07 17:48:04 +0200 |
commit | a779602584b43578e8baa69b367ba7d64e973dd0 (patch) | |
tree | 39159c8e30092778b28c0facff66ee8e7c129e9e | |
parent | eeb48353abaab335a1fc9cc448a5691330325a09 (diff) | |
download | ffmpeg-a779602584b43578e8baa69b367ba7d64e973dd0.tar.gz |
avcodec/eamad: silence uninitialized variable warnings
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/eamad.c | 2 |
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) { |