Browse Source

avformat/ffmdec: Silence "may be used uninitialized in this function" warnings

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.3
Michael Niedermayer 9 years ago
parent
commit
9859f54db3
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavformat/ffmdec.c

+ 2
- 2
libavformat/ffmdec.c View File

@@ -280,10 +280,10 @@ static int ffm_append_recommended_configuration(AVStream *st, char **conf)
static int ffm2_read_header(AVFormatContext *s)
{
FFMContext *ffm = s->priv_data;
AVStream *st;
AVStream *st = NULL;
AVIOContext *pb = s->pb;
AVCodecContext *dummy_codec = NULL;
AVCodecParameters *codecpar;
AVCodecParameters *codecpar = NULL;
const AVCodecDescriptor *codec_desc;
int ret;
int f_main = 0, f_cprv = -1, f_stvi = -1, f_stau = -1;


Loading…
Cancel
Save