Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-08-08 20:31:44 +0400
committerMans Rullgard <mans@mansr.com>2012-08-10 18:15:00 +0400
commit33de86db2bda850d97e04c4fd132c223c7249333 (patch)
tree8b0029680d1f9a1d05230ed014d33819bdc3e728 /libavutil/internal.h
parent987170cb9dd036d3372c8feac6074d13d1b84dd2 (diff)
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/internal.h')
-rw-r--r--libavutil/internal.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h
index 75c5156d0f..12b71086e6 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))