diff mpegvideo.h @ 768:c3fc09466f92 libavcodec

idct_permutation_type variable, so the permutation type can quickly be identified
author michaelni
date Fri, 25 Oct 2002 13:39:47 +0000
parents d4726182dfd2
children d4cc92144266
line wrap: on
line diff
--- a/mpegvideo.h	Fri Oct 25 10:50:02 2002 +0000
+++ b/mpegvideo.h	Fri Oct 25 13:39:47 2002 +0000
@@ -298,6 +298,11 @@
     ScanTable intra_v_scantable;
     ScanTable inter_scantable; // if inter == intra then intra should be used to reduce tha cache usage
     UINT8 idct_permutation[64];
+    int idct_permutation_type;
+#define FF_NO_IDCT_PERM 1
+#define FF_LIBMPEG2_IDCT_PERM 2
+#define FF_SIMPLE_IDCT_PERM 3
+#define FF_TRANSPOSE_IDCT_PERM 4
 
     void *opaque; /* private data for the user */