This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avformat/alp: tweak probe function to return MAX-1
Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
tags/n4.3
Zane van Iperen
Carl Eugen Hoyos
6 years ago
parent
608b8a8c82
commit
d99f3dc6b2
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/alp.c
+ 1
- 1
libavformat/alp.c
View File
@@ -51,7 +51,7 @@ static int alp_probe(const AVProbeData *p)
if (strncmp("ADPCM", p->buf + 8, 6) != 0)
return 0;
return AVPROBE_SCORE_
EXTENSION +
1;
return AVPROBE_SCORE_
MAX -
1;
}
static int alp_read_header(AVFormatContext *s)
Write
Preview
Loading…
Cancel
Save