Ticket #3205: patchaacdec.diff
| File patchaacdec.diff, 508 bytes (added by , 13 years ago) |
|---|
-
libavformat/aacdec.c
diff --git a/libavformat/aacdec.c b/libavformat/aacdec.c index d93e75e..4d1262c 100644
a b static int adts_aac_probe(AVProbeData *p) 58 58 if (first_frames>=3) return AVPROBE_SCORE_EXTENSION + 1; 59 59 else if(max_frames>500)return AVPROBE_SCORE_EXTENSION; 60 60 else if(max_frames>=3) return AVPROBE_SCORE_EXTENSION / 2; 61 else if(max_frames>= 1) return 1;61 else if(max_frames>=2) return 1; 62 62 else return 0; 63 63 } 64 64
