diff options
author | Anton Khirnov <wyskas@gmail.com> | 2010-02-06 12:32:44 +0000 |
---|---|---|
committer | Jai Menon <jmenon86@gmail.com> | 2010-02-06 12:32:44 +0000 |
commit | 04d2540c4ba1ffbd82385cb75b141cc69eb0eb79 (patch) | |
tree | 426d046faabcf07809dd5ee9980995beb3ccd9ac /libavformat/avi.h | |
parent | 86a4f011e678a15db4167358c0caad0247e15a7a (diff) | |
download | ffmpeg-04d2540c4ba1ffbd82385cb75b141cc69eb0eb79.tar.gz |
Add AVI metadata conversion table.
Patch by Anton Khirnov (gmail{wyskas}).
Originally committed as revision 21653 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avi.h')
-rw-r--r-- | libavformat/avi.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libavformat/avi.h b/libavformat/avi.h index 2214c03b98..f345c14760 100644 --- a/libavformat/avi.h +++ b/libavformat/avi.h @@ -21,6 +21,8 @@ #ifndef AVFORMAT_AVI_H #define AVFORMAT_AVI_H +#include "metadata.h" + #define AVIF_HASINDEX 0x00000010 // Index at end of file? #define AVIF_MUSTUSEINDEX 0x00000020 #define AVIF_ISINTERLEAVED 0x00000100 @@ -34,4 +36,11 @@ /* index flags */ #define AVIIF_INDEX 0x10 +extern const AVMetadataConv ff_avi_metadata_conv[]; + +/** + * A list of AVI info tags. + */ +extern const char ff_avi_tags[][5]; + #endif /* AVFORMAT_AVI_H */ |