comparison avformat.h @ 115:af07cbf4f24a libavformat

replaced progressive by interleaved
author bellard
date Mon, 21 Apr 2003 21:18:15 +0000
parents 2f68c53a38f2
children 7373bd0a8438
comparison
equal deleted inserted replaced
114:3a17db1515e4 115:af07cbf4f24a
5 extern "C" { 5 extern "C" {
6 #endif 6 #endif
7 7
8 #define LIBAVFORMAT_VERSION_INT 0x000406 8 #define LIBAVFORMAT_VERSION_INT 0x000406
9 #define LIBAVFORMAT_VERSION "0.4.6" 9 #define LIBAVFORMAT_VERSION "0.4.6"
10 #define LIBAVFORMAT_BUILD 4604 10 #define LIBAVFORMAT_BUILD 4605
11 11
12 #include "avcodec.h" 12 #include "avcodec.h"
13 13
14 #include "avio.h" 14 #include "avio.h"
15 15
217 217
218 typedef struct AVImageInfo { 218 typedef struct AVImageInfo {
219 enum PixelFormat pix_fmt; /* requested pixel format */ 219 enum PixelFormat pix_fmt; /* requested pixel format */
220 int width; /* requested width */ 220 int width; /* requested width */
221 int height; /* requested height */ 221 int height; /* requested height */
222 int progressive; /* image is progressive (e.g. interleaved GIF) */ 222 int interleaved; /* image is interleaved (e.g. interleaved GIF) */
223 AVPicture pict; /* returned allocated image */ 223 AVPicture pict; /* returned allocated image */
224 } AVImageInfo; 224 } AVImageInfo;
225 225
226 /* AVImageFormat.flags field constants */ 226 /* AVImageFormat.flags field constants */
227 #define AVIMAGE_PROGRESSIVE 0x0001 /* image format support progressive output */ 227 #define AVIMAGE_INTERLEAVED 0x0001 /* image format support interleaved output */
228 228
229 typedef struct AVImageFormat { 229 typedef struct AVImageFormat {
230 const char *name; 230 const char *name;
231 const char *extensions; 231 const char *extensions;
232 /* tell if a given file has a chance of being parsing by this format */ 232 /* tell if a given file has a chance of being parsing by this format */