[FFmpeg-cvslog] dict: move struct AVDictionary definition to dict.c
Mans Rullgard
git at videolan.org
Sat Aug 11 15:10:56 CEST 2012
ffmpeg | branch: master | Mans Rullgard <mans at mansr.com> | Wed Aug 8 17:31:44 2012 +0100| [33de86db2bda850d97e04c4fd132c223c7249333] | committer: Mans Rullgard
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 at mansr.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=33de86db2bda850d97e04c4fd132c223c7249333
---
libavutil/dict.c | 5 +++++
libavutil/internal.h | 5 -----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/libavutil/dict.c b/libavutil/dict.c
index 1344613..bbee732 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;
diff --git a/libavutil/internal.h b/libavutil/internal.h
index 75c5156..12b7108 100644
--- a/libavutil/internal.h
+++ b/libavutil/internal.h
@@ -39,11 +39,6 @@
#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)
# define attribute_align_arg __attribute__((force_align_arg_pointer))
More information about the ffmpeg-cvslog
mailing list