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>
This commit is contained in:
Andreas Cadhalpun
2015-10-27 22:56:53 +01:00
parent 41455dca60
commit 8bfbc8c5e5
3 changed files with 4 additions and 4 deletions

View File

@ -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);
}