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
lavf/aacdec: Do not autodetect a single frame inside the file.
tags/n3.2
Carl Eugen Hoyos
8 years ago
parent
47ea6f5c9d
commit
04fa20d53c
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/aacdec.c
+ 1
- 1
libavformat/aacdec.c
View File
@@ -70,7 +70,7 @@ static int adts_aac_probe(AVProbeData *p)
return AVPROBE_SCORE_EXTENSION;
else if (max_frames >= 3)
return AVPROBE_SCORE_EXTENSION / 2;
else if (
max
_frames >= 1)
else if (
first
_frames >= 1)
return 1;
else
return 0;
Write
Preview
Loading…
Cancel
Save