summaryrefslogtreecommitdiff
path: root/libswscale/utils.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2016-07-13 20:14:38 +0200
committerDiego Biurrun <diego@biurrun.de>2016-07-16 17:38:37 +0200
commitfacdfe40805559963b5875931af9406ed5ddcd5c (patch)
treef7d3f96d2922bc8d241efa12509468f9f801a850 /libswscale/utils.c
parentc0fd2fb27bebd1d5ab028e6df6bca9119d269122 (diff)
swscale: Add proper ff_ prefix to init functions
They are internal symbols that should not be exported. based on a patch 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 d549348e35..ba65e2a455 100644
--- a/libswscale/utils.c
+++ b/libswscale/utils.c
@@ -897,7 +897,7 @@ av_cold int sws_init_context(SwsContext *c, SwsFilter *srcFilter,
flags = c->flags;
emms_c();
if (!rgb15to16)
- sws_rgb2rgb_init();
+ ff_rgb2rgb_init();
unscaled = (srcW == dstW && srcH == dstH);