summaryrefslogtreecommitdiff
path: root/libswscale/utils.c
diff options
context:
space:
mode:
authorAndreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>2015-10-27 22:56:53 +0100
committerAndreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>2015-10-29 23:49:10 +0100
commit8bfbc8c5e504ef3ae914499646d450987b419385 (patch)
tree7d36e599b5b11151f5ed64f64b608ba8e94a3387 /libswscale/utils.c
parent41455dca60c4ad2b99c43482bc4bd26ed8493bac (diff)
swscale: rename sws_context_class to ff_sws_context_class
It is an internal swscale symbol and thus should not be exported. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
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 651b07a0ff..037683c3d2 100644
--- a/libswscale/utils.c
+++ b/libswscale/utils.c
@@ -1030,7 +1030,7 @@ SwsContext *sws_alloc_context(void)
av_assert0(offsetof(SwsContext, redDither) + DITHER32_INT == offsetof(SwsContext, dither32));
if (c) {
- c->av_class = &sws_context_class;
+ c->av_class = &ff_sws_context_class;
av_opt_set_defaults(c);
}