diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-07-13 20:14:38 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-07-16 17:38:37 +0200 |
commit | facdfe40805559963b5875931af9406ed5ddcd5c (patch) | |
tree | f7d3f96d2922bc8d241efa12509468f9f801a850 /libswscale/x86 | |
parent | c0fd2fb27bebd1d5ab028e6df6bca9119d269122 (diff) | |
download | ffmpeg-streaming-facdfe40805559963b5875931af9406ed5ddcd5c.zip ffmpeg-streaming-facdfe40805559963b5875931af9406ed5ddcd5c.tar.gz |
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/x86')
-rw-r--r-- | libswscale/x86/rgb2rgb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/x86/rgb2rgb.c b/libswscale/x86/rgb2rgb.c index 4dcd87c..c6635b4 100644 --- a/libswscale/x86/rgb2rgb.c +++ b/libswscale/x86/rgb2rgb.c @@ -137,7 +137,7 @@ DECLARE_ASM_CONST(8, uint64_t, blue_15mask) = 0x0000001f0000001fULL; #endif /* HAVE_INLINE_ASM */ -av_cold void rgb2rgb_init_x86(void) +av_cold void ff_rgb2rgb_init_x86(void) { #if HAVE_INLINE_ASM int cpu_flags = av_get_cpu_flags(); |