summaryrefslogtreecommitdiffstats
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2003-04-21 21:18:15 +0000
committerFabrice Bellard <fabrice@bellard.org>2003-04-21 21:18:15 +0000
commit7e2e1abf6b239f5d304dd42f5078498b68914667 (patch)
tree1631aabc688ecac3b18231834bed47258f581df9 /libavformat/avformat.h
parent0a05e4940bc6ae8bf66a7435e5cc994707e783b1 (diff)
downloadffmpeg-streaming-7e2e1abf6b239f5d304dd42f5078498b68914667.zip
ffmpeg-streaming-7e2e1abf6b239f5d304dd42f5078498b68914667.tar.gz
replaced progressive by interleaved
Originally committed as revision 1807 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 9e40145..ffe1d67 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -7,7 +7,7 @@ extern "C" {
#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 @@ typedef struct AVImageInfo {
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;
OpenPOWER on IntegriCloud