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:
authorAndreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>2015-10-28 00:56:53 +0300
committerDiego Biurrun <diego@biurrun.de>2016-07-16 18:38:37 +0300
commitc0fd2fb27bebd1d5ab028e6df6bca9119d269122 (patch)
tree8fa0627c8470caa7ae992fa2a3095de78b213d46 /libswscale/utils.c
parent71a0472114574993df7035f4de9aa007e03817b8 (diff)
swscale: Rename sws_context_class to ff_sws_context_class
It is an internal swscale symbol and thus should not be exported. Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r--libswscale/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c
index 129643a526..d549348e35 100644
--- a/libswscale/utils.c
+++ b/libswscale/utils.c
@@ -867,7 +867,7 @@ SwsContext *sws_alloc_context(void)
SwsContext *c = av_mallocz(sizeof(SwsContext));
if (c) {
- c->av_class = &sws_context_class;
+ c->av_class = &ff_sws_context_class;
av_opt_set_defaults(c);
}