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
latm: Do not give a score for a single instance
Bug-Id: 773 CC:
libav-stable@libav.org
tags/n2.6
Luca Barbato
11 years ago
parent
71f29410e7
commit
4f5906a1d7
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/rawdec.c
+ 1
- 1
libavformat/rawdec.c
View File
@@ -155,7 +155,7 @@ static int latm_read_probe(AVProbeData *p)
return AVPROBE_SCORE_EXTENSION;
else if (max_frames >= 3)
return AVPROBE_SCORE_EXTENSION / 2;
else if (max_frames >
=
1)
else if (max_frames > 1)
return 1;
else
return 0;
Write
Preview
Loading…
Cancel
Save