Re: [FFmpeg-devel] [PATCH] avcodec: add cdtoons decoder

2020-02-15 Thread Paul B Mahol
Will apply with minor nits fixed. On 2/12/20, Paul B Mahol wrote: > From: Alyssa Milburn > > This adds a decoder for Broderbund's sprite-based QuickTime CDToons > codec, based on the decoder I wrote for ScummVM. > > Signed-off-by: Alyssa Milburn > Signed-off-by: Paul B Mahol > --- > doc/gener

Re: [FFmpeg-devel] [PATCH] avcodec: add cdtoons decoder

2020-02-12 Thread Carl Eugen Hoyos
Am Mi., 12. Feb. 2020 um 20:50 Uhr schrieb Paul B Mahol : > +c->pal[i] = (0xff << 24) | (r << 16) | (g << 8) | (b); Should be "0xffu" iirc, and we usually have less parentheses. Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@

[FFmpeg-devel] [PATCH] avcodec: add cdtoons decoder

2020-02-12 Thread Paul B Mahol
From: Alyssa Milburn This adds a decoder for Broderbund's sprite-based QuickTime CDToons codec, based on the decoder I wrote for ScummVM. Signed-off-by: Alyssa Milburn Signed-off-by: Paul B Mahol --- doc/general.texi| 2 + libavcodec/Makefile | 1 + libavcodec/allcodecs.c |