Browse Source

Some VQA v1 files don't have audio stream

Originally committed as revision 7216 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Kostya Shishkov 18 years ago
parent
commit
dfbb76d373
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/westwood.c

+ 1
- 1
libavformat/westwood.c View File

@@ -249,7 +249,7 @@ static int wsvqa_read_header(AVFormatContext *s,
st->codec->time_base.den = VQA_FRAMERATE;

/* initialize the audio decoder stream for VQA v1 or nonzero samplerate */
if (LE_16(&header[24]) || (LE_16(&header[0]) == 1)) {
if (LE_16(&header[24]) || (LE_16(&header[0]) == 1 && LE_16(&header[2]) == 1)) {
st = av_new_stream(s, 0);
if (!st)
return AVERROR_NOMEM;


Loading…
Cancel
Save