mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/eamad: silence uninitialized variable warnings
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
eeb48353ab
commit
a779602584
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue