mirror of https://git.ffmpeg.org/ffmpeg.git
mcdec: suppress "warning: a/vst may be used uninitialized in this function"
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e9c4f36c52
commit
70d5cd103a
|
@ -229,7 +229,7 @@ static int mv_read_header(AVFormatContext *avctx)
|
|||
{
|
||||
MvContext *mv = avctx->priv_data;
|
||||
AVIOContext *pb = avctx->pb;
|
||||
AVStream *ast, *vst;
|
||||
AVStream *ast = NULL, *vst = NULL; //initialization to suppress warning
|
||||
int version, i;
|
||||
|
||||
avio_skip(pb, 4);
|
||||
|
|
Loading…
Reference in New Issue