[FFmpeg-devel] [PATCH]lavf/swf: Fix detection of compressed files
Carl Eugen Hoyos
cehoyos at ag.or.at
Tue Aug 4 14:58:09 CEST 2015
Hi!
Attached patch fixes a regression since b7e506b3.
Please comment, Carl Eugen
-------------- next part --------------
diff --git a/libavformat/swfdec.c b/libavformat/swfdec.c
index 31c26f8..ce1ad8f 100644
--- a/libavformat/swfdec.c
+++ b/libavformat/swfdec.c
@@ -67,6 +67,10 @@ static int swf_probe(AVProbeData *p)
&& AV_RB24(p->buf) != AV_RB24("FWS"))
return 0;
+ if ( AV_RB24(p->buf) == AV_RB24("CWS")
+ && p->buf[3] <= 20)
+ return AVPROBE_SCORE_MAX / 4 + 1;
+
init_get_bits8(&gb, p->buf + 3, p->buf_size - 3);
skip_bits(&gb, 40);
More information about the ffmpeg-devel
mailing list