Commit 33de86db authored by Mans Rullgard's avatar 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: 's avatarMans Rullgard <mans@mansr.com>
parent 987170cb
...@@ -23,6 +23,11 @@ ...@@ -23,6 +23,11 @@
#include "internal.h" #include "internal.h"
#include "mem.h" #include "mem.h"
struct AVDictionary {
int count;
AVDictionaryEntry *elems;
};
int av_dict_count(const AVDictionary *m) int av_dict_count(const AVDictionary *m)
{ {
return m ? m->count : 0; return m ? m->count : 0;
......
...@@ -39,11 +39,6 @@ ...@@ -39,11 +39,6 @@
#include "timer.h" #include "timer.h"
#include "dict.h" #include "dict.h"
struct AVDictionary {
int count;
AVDictionaryEntry *elems;
};
#ifndef attribute_align_arg #ifndef attribute_align_arg
#if ARCH_X86_32 && AV_GCC_VERSION_AT_LEAST(4,2) #if ARCH_X86_32 && AV_GCC_VERSION_AT_LEAST(4,2)
# define attribute_align_arg __attribute__((force_align_arg_pointer)) # define attribute_align_arg __attribute__((force_align_arg_pointer))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment