mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-17 12:27:18 +00:00
Merge remote-tracking branch 'qatar/master'
* qatar/master: aac: K&R formatting cosmetics Conflicts: libavformat/aacdec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
b5bdd04f08
@ -38,28 +38,34 @@ static int adts_aac_probe(AVProbeData *p)
|
||||
|
||||
buf = buf0;
|
||||
|
||||
for(; buf < end; buf= buf2+1) {
|
||||
for (; buf < end; buf = buf2 + 1) {
|
||||
buf2 = buf;
|
||||
|
||||
for(frames = 0; buf2 < end; frames++) {
|
||||
for (frames = 0; buf2 < end; frames++) {
|
||||
uint32_t header = AV_RB16(buf2);
|
||||
if((header&0xFFF6) != 0xFFF0)
|
||||
if ((header & 0xFFF6) != 0xFFF0)
|
||||
break;
|
||||
fsize = (AV_RB32(buf2 + 3) >> 13) & 0x1FFF;
|
||||
if(fsize < 7)
|
||||
if (fsize < 7)
|
||||
break;
|
||||
fsize = FFMIN(fsize, end - buf2);
|
||||
buf2 += fsize;
|
||||
}
|
||||
max_frames = FFMAX(max_frames, frames);
|
||||
if(buf == buf0)
|
||||
first_frames= frames;
|
||||
if (buf == buf0)
|
||||
first_frames = frames;
|
||||
}
|
||||
if (first_frames>=3) return AVPROBE_SCORE_EXTENSION + 1;
|
||||
else if(max_frames>500)return AVPROBE_SCORE_EXTENSION;
|
||||
else if(max_frames>=3) return AVPROBE_SCORE_EXTENSION / 2;
|
||||
else if(max_frames>=1) return 1;
|
||||
else return 0;
|
||||
|
||||
if (first_frames >= 3)
|
||||
return AVPROBE_SCORE_EXTENSION + 1;
|
||||
else if (max_frames > 500)
|
||||
return AVPROBE_SCORE_EXTENSION;
|
||||
else if (max_frames >= 3)
|
||||
return AVPROBE_SCORE_EXTENSION / 2;
|
||||
else if (max_frames >= 1)
|
||||
return 1;
|
||||
else
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int adts_aac_read_header(AVFormatContext *s)
|
||||
@ -82,7 +88,7 @@ static int adts_aac_read_header(AVFormatContext *s)
|
||||
avio_seek(s->pb, cur, SEEK_SET);
|
||||
}
|
||||
|
||||
//LCM of all possible ADTS sample rates
|
||||
// LCM of all possible ADTS sample rates
|
||||
avpriv_set_pts_info(st, 64, 1, 28224000);
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user