From 8bfbc8c5e504ef3ae914499646d450987b419385 Mon Sep 17 00:00:00 2001 From: Andreas Cadhalpun Date: Tue, 27 Oct 2015 22:56:53 +0100 Subject: 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 Signed-off-by: Andreas Cadhalpun --- libswscale/options.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libswscale/options.c') diff --git a/libswscale/options.c b/libswscale/options.c index cf793ef..e666e5a 100644 --- a/libswscale/options.c +++ b/libswscale/options.c @@ -84,7 +84,7 @@ static const AVOption swscale_options[] = { { NULL } }; -const AVClass sws_context_class = { +const AVClass ff_sws_context_class = { .class_name = "SWScaler", .item_name = sws_context_to_name, .option = swscale_options, @@ -94,5 +94,5 @@ const AVClass sws_context_class = { const AVClass *sws_get_class(void) { - return &sws_context_class; + return &ff_sws_context_class; } -- cgit v1.1