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/rsd: increase probe score, as misdetections are fixed
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.2-rc1
Michael Niedermayer
12 years ago
parent
50a3c4c5d2
commit
7b7697646b
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/rsd.c
+ 1
- 1
libavformat/rsd.c
View File
@@ -49,7 +49,7 @@ static int rsd_probe(AVProbeData *p)
return 1;
if (AV_RL32(p->buf + 16) > 8*48000 || !AV_RL32(p->buf + 16))
return 1;
return AVPROBE_SCORE_
EXTENSION
;
return AVPROBE_SCORE_
MAX
;
}
static int rsd_read_header(AVFormatContext *s)
Write
Preview
Loading…
Cancel
Save