diff mpegvideo.h @ 1410:524c904a66b8 libavcodec

PSX MDEC decoder, based upon some code from Sebastian Jedruszkiewicz <elf at frogger dot rules dot pl> note: completly untested, no demuxer yet
author michaelni
date Fri, 22 Aug 2003 14:59:04 +0000
parents da0b3a50d209
children c2e63cb94d06
line wrap: on
line diff
--- a/mpegvideo.h	Fri Aug 22 08:29:44 2003 +0000
+++ b/mpegvideo.h	Fri Aug 22 14:59:04 2003 +0000
@@ -648,7 +648,7 @@
     int full_pel[2];
     int interlaced_dct;
     int first_slice;
-    int first_field;
+    int first_field;         ///< is 1 for the first field of a field picture 0 otherwise
     
     /* RTP specific */
     /* These are explained on avcodec.h */
@@ -662,8 +662,8 @@
     int (*decode_mb)(struct MpegEncContext *s, DCTELEM block[6][64]); // used by some codecs to avoid a switch()
 #define SLICE_OK         0
 #define SLICE_ERROR     -1
-#define SLICE_END       -2 //end marker found
-#define SLICE_NOEND     -3 //no end marker or error found but mb count exceeded
+#define SLICE_END       -2 ///<end marker found
+#define SLICE_NOEND     -3 ///<no end marker or error found but mb count exceeded
     
     void (*dct_unquantize_mpeg1)(struct MpegEncContext *s, 
                            DCTELEM *block/*align 16*/, int n, int qscale);