diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-08-10 17:05:12 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-08-10 17:05:12 +0000 |
commit | fbd69f519b495fdc9b36ecc5e1bde9f6f05298b8 (patch) | |
tree | cd8ebf796f30b80f07fc849af852677e93981853 | |
parent | 65d7d68b9970e03ba43832b40ca0817919748c07 (diff) | |
download | ffmpeg-fbd69f519b495fdc9b36ecc5e1bde9f6f05298b8.tar.gz |
100000l (forgotten return)
Originally committed as revision 10062 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/raw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/raw.c b/libavformat/raw.c index f2b0888c5a..bf0a11146d 100644 --- a/libavformat/raw.c +++ b/libavformat/raw.c @@ -434,7 +434,7 @@ static int ac3_probe(AVProbeData *p) static int flac_probe(AVProbeData *p) { if(memcmp(p->buf, "fLaC", 4)) return 0; - else AVPROBE_SCORE_MAX / 2; + else return AVPROBE_SCORE_MAX / 2; } AVInputFormat shorten_demuxer = { |