Browse Source

avidec: fix error introduced in r17382

Originally committed as revision 17385 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Måns Rullgård 16 years ago
parent
commit
037c08d6cd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/avidec.c

+ 1
- 1
libavformat/avidec.c View File

@@ -248,7 +248,7 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap)

avi->stream_index= -1;

if (get_riff(s, avi, pb) < 0)
if (get_riff(s, pb) < 0)
return -1;

avi->fsize = url_fsize(pb);


Loading…
Cancel
Save