Fix demuxing of wav files with broken data header

Originally committed as revision 21746 to svn://svn.ffmpeg.org/ffmpeg/trunk
release/0.6
Daniel Verkamp 15 years ago
parent 40938d9382
commit b7e0f88f2b
  1. 3
      libavformat/wav.c

@ -227,6 +227,9 @@ static int wav_read_header(AVFormatContext *s,
size = data_size; size = data_size;
if (size < 0) if (size < 0)
return -1; return -1;
if (!size) {
wav->data_end = INT64_MAX;
} else
wav->data_end= url_ftell(pb) + size; wav->data_end= url_ftell(pb) + size;
return 0; return 0;
} }

Loading…
Cancel
Save