summaryrefslogtreecommitdiff
path: root/libswscale/utils.c
diff options
context:
space:
mode:
authorAndreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>2015-10-27 22:56:53 +0100
committerDiego Biurrun <diego@biurrun.de>2016-07-16 17:38:37 +0200
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);
}