You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avformat/dvbsub: check for 0xf0 earlier in probe, 30% faster
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -33,6 +33,7 @@ static int dvbsub_probe(AVProbeData *p)
|
||||
int max_score = 0;
|
||||
|
||||
for(i=0; i<p->buf_size; i++){
|
||||
if (p->buf[i] == 0x0f) {
|
||||
const uint8_t *ptr = p->buf + i;
|
||||
uint8_t histogram[6] = {0};
|
||||
int min = 255;
|
||||
@@ -55,6 +56,7 @@ static int dvbsub_probe(AVProbeData *p)
|
||||
}
|
||||
if (min && j > max_score)
|
||||
max_score = j;
|
||||
}
|
||||
}
|
||||
|
||||
if (max_score > 5)
|
||||
|
Reference in New Issue
Block a user