diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-05-12 16:00:44 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-05-12 16:00:44 +0000 |
commit | fcee01646748763cf63528c97b99e976d6c76da8 (patch) | |
tree | 97a2157603a82694291276bdff5656acd1b8fde8 /libavcodec/avcodec.h | |
parent | 4a1b9ba0dd64e57e7090e66213f87ea6607cabad (diff) | |
download | ffmpeg-fcee01646748763cf63528c97b99e976d6c76da8.tar.gz |
automatic pixel format selection
Originally committed as revision 3131 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index d7781dc9a3..fe4aeb2c8b 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1658,6 +1658,7 @@ typedef struct AVCodec { struct AVCodec *next; void (*flush)(AVCodecContext *); const AVRational *supported_framerates; ///array of supported framerates, or NULL if any, array is terminated by {0,0} + const enum PixelFormat *pix_fmts; ///array of supported pixel formats, or NULL if unknown, array is terminanted by -1 } AVCodec; /** |