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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-08-10 11:50:00 +0400
committerAnton Khirnov <anton@khirnov.net>2011-08-10 14:49:57 +0400
commit7221139ba0486c24afeac1f41ba97c75f58046b9 (patch)
tree80cd8ebf69f529cff4308ae09b742a1e19957ff6 /libavcodec/utils.c
parentd1d33e0763d68c6eaff1342247f8c3198a188f0a (diff)
lavc: make avcodec_init() static on next bump.
It's called from avcodec_register() anyway, so there's no reason for it to be public.
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r--libavcodec/utils.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index 32e52514e5..64f623c161 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -1065,6 +1065,9 @@ const char *avcodec_license(void)
return LICENSE_PREFIX LIBAV_LICENSE + sizeof(LICENSE_PREFIX) - 1;
}
+#if !FF_API_AVCODEC_INIT
+static
+#endif
void avcodec_init(void)
{
static int initialized = 0;