diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2003-04-22 08:36:39 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2003-04-22 08:36:39 +0000 |
commit | 5cd62665f0b3e6a1326327637d6db16fe319acec (patch) | |
tree | b23b28263a137d4e978acaf17c4408de7659d511 /libavcodec/avcodec.h | |
parent | 693feac556d83c28a215ebbb6b62568a76898823 (diff) | |
download | ffmpeg-5cd62665f0b3e6a1326327637d6db16fe319acec.tar.gz |
* fixed initialization and some memleak
* filling more avcodecs variables
* extending/improving mov parsing (unfinished)
Originally committed as revision 1812 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 3fa7abfec8..4c2ead7d1a 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1080,6 +1080,14 @@ typedef struct AVCodecContext { * - decoding: unused */ int inter_quant_bias; + + /** + * color table ID. + * - encoding: unused. + * - decoding: which clrtable should be used for 8bit RGB images + * table have to be stored somewhere FIXME + */ + int color_table_id; } AVCodecContext; |