Commit b882a855 authored by mru's avatar mru

kill uninitialised variable warning in ac3_probe()


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9521 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 14c2a77b
...@@ -412,7 +412,7 @@ static int h261_probe(AVProbeData *p) ...@@ -412,7 +412,7 @@ static int h261_probe(AVProbeData *p)
static int ac3_probe(AVProbeData *p) static int ac3_probe(AVProbeData *p)
{ {
int max_frames, first_frames, frames; int max_frames, first_frames = 0, frames;
uint8_t *buf, *buf2, *end; uint8_t *buf, *buf2, *end;
AC3HeaderInfo hdr; AC3HeaderInfo hdr;
......
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