diff mpegvideo.h @ 909:8ae1e4c24e91 libavcodec

new PSNR code (now works with chroma, b frames, ...) rename *_TYPE to FF_*_TYPE for the external API allow user specified pict_type
author michaelni
date Wed, 04 Dec 2002 21:13:02 +0000
parents 22ee74da2cd3
children 75ee49a4a516
line wrap: on
line diff
--- a/mpegvideo.h	Wed Dec 04 12:42:25 2002 +0000
+++ b/mpegvideo.h	Wed Dec 04 21:13:02 2002 +0000
@@ -48,6 +48,11 @@
 #define MAX_RUN    64
 #define MAX_LEVEL  64
 
+#define I_TYPE FF_I_TYPE  // Intra
+#define P_TYPE FF_P_TYPE  // Predicted
+#define B_TYPE FF_B_TYPE  // Bi-dir predicted
+#define S_TYPE FF_S_TYPE  // S(GMC)-VOP MPEG4
+
 typedef struct Predictor{
     double coeff;
     double count;