[FFmpeg-devel] [PATCH]lavf/img2: Only autodetect valid Quickdraw images

Michael Niedermayer michaelni at gmx.at
Tue May 19 18:15:49 CEST 2015


On Tue, May 19, 2015 at 11:58:47AM +0200, Carl Eugen Hoyos wrote:
> Hi!
> 
> Attached patch improves the Quickdraw autodetection.
> 
> Please comment, Carl Eugen

>  img2dec.c |    6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> e36c8a9c4c72f72030658d5f70ca46b27066eda3  patchimg2qdrw.diff



> diff --git a/libavformat/img2dec.c b/libavformat/img2dec.c
> index 0830f00..ec234d1 100644
> --- a/libavformat/img2dec.c
> +++ b/libavformat/img2dec.c
> @@ -714,8 +714,10 @@ static int qdraw_probe(AVProbeData *p)
>  {
>      const uint8_t *b = p->buf;
>  
> -    if (!b[10] && AV_RB32(b+11) == 0x1102ff0c && !b[15] ||
> -        p->buf_size >= 528 && !b[522] && AV_RB32(b+523) == 0x1102ff0c && !b[527])
> +    if (   p->buf_size >= 528
> +        && (AV_RB64(b + 520) & 0xFFFFFFFFFFFF) == 0x001102ff0c00
> +        && AV_RB16(b + 520)
> +        && AV_RB16(b + 518))

>          return AVPROBE_SCORE_EXTENSION + 1;

i think this should be higher with that change

also i think a somewhat lower score could still be output for less
valid but still decodeable files

[...]

-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

In a rich man's house there is no place to spit but his face.
-- Diogenes of Sinope
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 181 bytes
Desc: Digital signature
URL: <https://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20150519/a58165a7/attachment.asc>


More information about the ffmpeg-devel mailing list