[FFmpeg-devel] [PATCH]v308 and yuv4 encoders and decoders
Carl Eugen Hoyos
cehoyos at ag.or.at
Fri Dec 30 02:38:12 CET 2011
Reimar Döffinger <Reimar.Doeffinger <at> gmx.de> writes:
> Also: in one of the decode functions, it is a bit silly to first use shifts to
> build an int from separate 8-bit values and then use AV_WB24 which just has to
> pick it apart again....
Changed locally to:
*dst++ = v[j];
*dst++ = y[j];
*dst++ = u[j];
Thank you, Carl Eugen
More information about the ffmpeg-devel
mailing list