Clément Bœsch <[email protected]> writes: > --- > libavformat/oggdec.c | 7 ++----- > 1 files changed, 2 insertions(+), 5 deletions(-) > > diff --git a/libavformat/oggdec.c b/libavformat/oggdec.c > index ffc3b39..b5420f8 100644 > --- a/libavformat/oggdec.c > +++ b/libavformat/oggdec.c > @@ -631,12 +631,9 @@ static int ogg_read_seek(AVFormatContext *s, int > stream_index, > > static int ogg_probe(AVProbeData *p) > { > - if (p->buf[0] == 'O' && p->buf[1] == 'g' && > - p->buf[2] == 'g' && p->buf[3] == 'S' && > - p->buf[4] == 0x0 && p->buf[5] <= 0x7 ) > + if (!memcmp("OggS", p->buf, 5) && p->buf[5] <= 0x7) > return AVPROBE_SCORE_MAX; > - else > - return 0; > + return 0; > } > > AVInputFormat ff_ogg_demuxer = { > --
Looks OK. -- Måns Rullgård [email protected] _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
