diff options
author | Mans Rullgard <mans@mansr.com> | 2012-08-08 17:31:44 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-08-10 15:15:00 +0100 |
commit | 33de86db2bda850d97e04c4fd132c223c7249333 (patch) | |
tree | 8b0029680d1f9a1d05230ed014d33819bdc3e728 /libavutil/dict.c | |
parent | 987170cb9dd036d3372c8feac6074d13d1b84dd2 (diff) | |
download | ffmpeg-33de86db2bda850d97e04c4fd132c223c7249333.tar.gz |
dict: move struct AVDictionary definition to dict.c
This makes struct AVDictionary fully opaque now that nothing
needs to access it directly any more.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavutil/dict.c')
-rw-r--r-- | libavutil/dict.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavutil/dict.c b/libavutil/dict.c index 1344613fa9..bbee732db9 100644 --- a/libavutil/dict.c +++ b/libavutil/dict.c @@ -23,6 +23,11 @@ #include "internal.h" #include "mem.h" +struct AVDictionary { + int count; + AVDictionaryEntry *elems; +}; + int av_dict_count(const AVDictionary *m) { return m ? m->count : 0; |