changeset 4187:82a4c1c80021

10l...
author arpi
date Wed, 16 Jan 2002 01:51:12 +0000
parents f5c38da17b59
children cfd1eed5961d
files mp_image.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;