diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-04-08 20:58:56 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-04-08 20:58:56 +0000 |
commit | 4606ac8dee9985bae07fcd0c0e04d6e2c63d6dc5 (patch) | |
tree | 77d66364faa3acdb066fdab3999e641cc75468bc /libav/avformat.h | |
parent | a266644f560f5292eea477093fb9183099f3921b (diff) | |
download | ffmpeg-4606ac8dee9985bae07fcd0c0e04d6e2c63d6dc5.tar.gz |
* 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.h | 3 |
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 { |