Empty audio chunks in VMD are silent, not skipped

Originally committed as revision 16710 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Kostya Shishkov 16 years ago
parent 7d2b199b8d
commit 8d6fc274fa
  1. 2
      libavformat/sierravmd.c

@ -187,7 +187,7 @@ static int vmd_read_header(AVFormatContext *s,
get_buffer(pb, chunk, BYTES_PER_FRAME_RECORD); get_buffer(pb, chunk, BYTES_PER_FRAME_RECORD);
type = chunk[0]; type = chunk[0];
size = AV_RL32(&chunk[2]); size = AV_RL32(&chunk[2]);
if(!size) if(!size && type != 1)
continue; continue;
switch(type) { switch(type) {
case 1: /* Audio Chunk */ case 1: /* Audio Chunk */

Loading…
Cancel
Save