Commit f95257d2 authored by Clément Bœsch's avatar Clément Bœsch Committed by Diego Biurrun

oggdec: simplify ogg_probe

Signed-off-by: 's avatarDiego Biurrun <diego@biurrun.de>
parent c8f487de
...@@ -642,12 +642,9 @@ static int ogg_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp ...@@ -642,12 +642,9 @@ static int ogg_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp
static int ogg_probe(AVProbeData *p) static int ogg_probe(AVProbeData *p)
{ {
if (p->buf[0] == 'O' && p->buf[1] == 'g' && if (!memcmp("OggS", p->buf, 5) && p->buf[5] <= 0x7)
p->buf[2] == 'g' && p->buf[3] == 'S' &&
p->buf[4] == 0x0 && p->buf[5] <= 0x7 )
return AVPROBE_SCORE_MAX; return AVPROBE_SCORE_MAX;
else return 0;
return 0;
} }
AVInputFormat ff_ogg_demuxer = { AVInputFormat ff_ogg_demuxer = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment