1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

100000l (forgotten return)

Originally committed as revision 10062 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2007-08-10 17:05:12 +00:00
parent 65d7d68b99
commit fbd69f519b

View File

@ -434,7 +434,7 @@ static int ac3_probe(AVProbeData *p)
static int flac_probe(AVProbeData *p) static int flac_probe(AVProbeData *p)
{ {
if(memcmp(p->buf, "fLaC", 4)) return 0; if(memcmp(p->buf, "fLaC", 4)) return 0;
else AVPROBE_SCORE_MAX / 2; else return AVPROBE_SCORE_MAX / 2;
} }
AVInputFormat shorten_demuxer = { AVInputFormat shorten_demuxer = {