--- trunk/xvidcore/examples/xvid_stat.c 2003/02/22 18:54:19 895 +++ trunk/xvidcore/examples/xvid_stat.c 2003/02/22 21:37:50 896 @@ -19,7 +19,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * $Id: xvid_stat.c,v 1.21 2003-02-16 05:11:39 suxen_drol Exp $ + * $Id: xvid_stat.c,v 1.22 2003-02-22 21:37:49 chl Exp $ * ****************************************************************************/ @@ -915,7 +915,7 @@ xframe.length = -1; /* this is written by the routine */ xframe.image = image; - xframe.colorspace = XVID_CSP_YV12; /* defined in */ + xframe.colorspace = XVID_CSP_I420; /* defined in */ xframe.intra = -1; /* let the codec decide between I-frame (1) and P-frame (0) */ @@ -997,7 +997,7 @@ xframe.length = m4v_size; xframe.image = out_buffer; xframe.stride = XDIM; - xframe.colorspace = XVID_CSP_YV12; /* XVID_CSP_USER is fastest (no memcopy involved) */ + xframe.colorspace = XVID_CSP_I420; /* XVID_CSP_USER is fastest (no memcopy involved) */ xerr = xvid_decore(dec_handle, XVID_DEC_DECODE, &xframe, NULL);