Commit ff1d81b0 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/swfdec: check version and size during probing

Fixes probetest failure
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7b769764
...@@ -55,9 +55,12 @@ static int get_swf_tag(AVIOContext *pb, int *len_ptr) ...@@ -55,9 +55,12 @@ static int get_swf_tag(AVIOContext *pb, int *len_ptr)
static int swf_probe(AVProbeData *p) static int swf_probe(AVProbeData *p)
{ {
if(p->buf_size < 15)
return 0;
/* check file header */ /* check file header */
if ((p->buf[0] == 'F' || p->buf[0] == 'C') && p->buf[1] == 'W' && if ((p->buf[0] == 'F' || p->buf[0] == 'C') && p->buf[1] == 'W' &&
p->buf[2] == 'S') p->buf[2] == 'S' && p->buf[3] < 20)
return AVPROBE_SCORE_MAX; return AVPROBE_SCORE_MAX;
else else
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment