diff avformat.h @ 115:af07cbf4f24a libavformat

replaced progressive by interleaved
author bellard
date Mon, 21 Apr 2003 21:18:15 +0000
parents 2f68c53a38f2
children 7373bd0a8438
line wrap: on
line diff
--- a/avformat.h	Mon Apr 21 14:39:52 2003 +0000
+++ b/avformat.h	Mon Apr 21 21:18:15 2003 +0000
@@ -7,7 +7,7 @@
 
 #define LIBAVFORMAT_VERSION_INT 0x000406  
 #define LIBAVFORMAT_VERSION     "0.4.6"
-#define LIBAVFORMAT_BUILD       4604
+#define LIBAVFORMAT_BUILD       4605
 
 #include "avcodec.h"
 
@@ -219,12 +219,12 @@
     enum PixelFormat pix_fmt; /* requested pixel format */
     int width; /* requested width */
     int height; /* requested height */
-    int progressive; /* image is progressive (e.g. interleaved GIF) */
+    int interleaved; /* image is interleaved (e.g. interleaved GIF) */
     AVPicture pict; /* returned allocated image */
 } AVImageInfo;
 
 /* AVImageFormat.flags field constants */
-#define AVIMAGE_PROGRESSIVE 0x0001 /* image format support progressive output */
+#define AVIMAGE_INTERLEAVED 0x0001 /* image format support interleaved output */
 
 typedef struct AVImageFormat {
     const char *name;