Commit e0a99d54 authored by Michael Niedermayer's avatar Michael Niedermayer

msmpeg4enc: fix possible use of uninitialized warning

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 2fbc8ea0
...@@ -494,7 +494,7 @@ void ff_msmpeg4_encode_mb(MpegEncContext * s, ...@@ -494,7 +494,7 @@ void ff_msmpeg4_encode_mb(MpegEncContext * s,
static void msmpeg4_encode_dc(MpegEncContext * s, int level, int n, int *dir_ptr) static void msmpeg4_encode_dc(MpegEncContext * s, int level, int n, int *dir_ptr)
{ {
int sign, code; int sign, code;
int pred, extquant; int pred, av_uninit(extquant);
int extrabits = 0; int extrabits = 0;
int16_t *dc_val; int16_t *dc_val;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment