Commit f015e411 authored by Måns Rullgård's avatar Måns Rullgård

kill uninitialised variable warning in amr_read_packet()

Originally committed as revision 9522 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 8c222bb4
......@@ -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