# HG changeset patch # User arpi # Date 1011145872 0 # Node ID 82a4c1c80021c2994e3f37bc3c171c8adc984750 # Parent f5c38da17b596ad695dbbd7aa7d42be7f80c1e8e 10l... diff -r f5c38da17b59 -r 82a4c1c80021 mp_image.h --- a/mp_image.h Wed Jan 16 01:19:22 2002 +0000 +++ b/mp_image.h Wed Jan 16 01:51:12 2002 +0000 @@ -33,7 +33,7 @@ #ifdef IMGFMT_YUY2 static inline void mp_image_setfmt(mp_image_t* mpi,unsigned int out_fmt){ mpi->flags&=~(MP_IMGFLAG_PLANAR|MP_IMGFLAG_YUV|MP_IMGFLAG_SWAPPED); - mpi->out_fmt=out_fmt; + mpi->imgfmt=out_fmt; if( (out_fmt&IMGFMT_RGB_MASK) == IMGFMT_RGB ){ mpi->bpp=((out_fmt&255)+7)&(~7); return;