diff options
author | Anton Khirnov | 2011-05-22 12:45:00 +0200 |
---|---|---|
committer | Anton Khirnov | 2011-06-08 07:43:45 +0200 |
commit | d9f80ea2a7325f9c84307568843512811a99baff (patch) | |
tree | 4cfb0b73956c53a83b6bebded7345eaa3f69d181 /libavutil/internal.h | |
parent | ac4a8548110bc180cb67bea6eaf8b8e1081370cf (diff) |
Move metadata API from lavf to lavu.
Rename it to AVDictionary, since it will be used as such. Tags
documentation and metadata conversion API is lavf-specific, so remains
there.
Diffstat (limited to 'libavutil/internal.h')
-rw-r--r-- | libavutil/internal.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h index ee11a0a9d2..5ed3fb81c3 100644 --- a/libavutil/internal.h +++ b/libavutil/internal.h @@ -37,6 +37,12 @@ #include "config.h" #include "attributes.h" #include "timer.h" +#include "dict.h" + +struct AVDictionary { + int count; + AVDictionaryEntry *elems; +}; #ifndef attribute_align_arg #if ARCH_X86_32 && AV_GCC_VERSION_AT_LEAST(4,2) |