Browse Source

Improve SIFF probe by also checking the first tag is one of the expected.

Originally committed as revision 19898 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Reimar Döffinger 15 years ago
parent
commit
5abfae79ca
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      libavformat/siff.c

+ 4
- 3
libavformat/siff.c View File

@@ -60,11 +60,12 @@ typedef struct SIFFContext{

static int siff_probe(AVProbeData *p)
{
uint32_t tag = AV_RL32(p->buf + 8);
/* check file header */
if (AV_RL32(p->buf) == TAG_SIFF)
return AVPROBE_SCORE_MAX;
else
if (AV_RL32(p->buf) != TAG_SIFF ||
(tag != TAG_VBV1 && tag != TAG_SOUN))
return 0;
return AVPROBE_SCORE_MAX;
}

static int create_audio_stream(AVFormatContext *s, SIFFContext *c)


Loading…
Cancel
Save