Commit ff1184b4 authored by mru's avatar mru

kill uninitialised variable warning in amr_read_packet()


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9522 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b882a855
......@@ -118,7 +118,7 @@ static int amr_read_packet(AVFormatContext *s,
AVPacket *pkt)
{
AVCodecContext *enc = s->streams[0]->codec;
int read, size, toc, mode;
int read, size = 0, toc, mode;
if (url_feof(&s->pb))
{
......
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