Commit 6f7042f6 authored by michael's avatar michael

Remove useless init from aiff_read_header() found by CSA.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18580 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f55438f3
...@@ -313,7 +313,7 @@ static int aiff_read_header(AVFormatContext *s, ...@@ -313,7 +313,7 @@ static int aiff_read_header(AVFormatContext *s,
uint32_t tag; uint32_t tag;
unsigned version = AIFF_C_VERSION1; unsigned version = AIFF_C_VERSION1;
ByteIOContext *pb = s->pb; ByteIOContext *pb = s->pb;
AVStream * st = s->streams[0]; AVStream * st;
/* check FORM header */ /* check FORM header */
filesize = get_tag(pb, &tag); filesize = get_tag(pb, &tag);
......
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