summaryrefslogtreecommitdiff
path: root/libav/avformat.h
diff options
context:
space:
mode:
authorZdenek Kabelac <kabi@informatics.muni.cz>2002-04-08 20:58:56 +0000
committerZdenek Kabelac <kabi@informatics.muni.cz>2002-04-08 20:58:56 +0000
commit4606ac8dee9985bae07fcd0c0e04d6e2c63d6dc5 (patch)
tree77d66364faa3acdb066fdab3999e641cc75468bc /libav/avformat.h
parenta266644f560f5292eea477093fb9183099f3921b (diff)
* some minor modification by Philip Gladston
* grab containes new code Originally committed as revision 388 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/avformat.h')
-rw-r--r--libav/avformat.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libav/avformat.h b/libav/avformat.h
index 8c85b9494f..c0d25f1607 100644
--- a/libav/avformat.h
+++ b/libav/avformat.h
@@ -12,6 +12,7 @@ typedef struct AVPacket {
int stream_index;
int flags;
#define PKT_FLAG_KEY 0x0001
+#define PKT_FLAG_DROPPED_FRAME 0x0002
} AVPacket;
int av_new_packet(AVPacket *pkt, int size);
@@ -29,7 +30,7 @@ typedef struct AVFormatParameters {
int channels;
int width;
int height;
- int pix_fmt;
+ enum PixelFormat pix_fmt;
} AVFormatParameters;
typedef struct AVFormat {