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/tests | |
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/tests')
-rw-r--r-- | libswscale/tests/colorspace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/tests/colorspace.c b/libswscale/tests/colorspace.c index 962b11a..23a1945 100644 --- a/libswscale/tests/colorspace.c +++ b/libswscale/tests/colorspace.c @@ -46,7 +46,7 @@ int main(void) return -1; av_log(NULL, AV_LOG_INFO, "memory corruption test ...\n"); - sws_rgb2rgb_init(); + ff_rgb2rgb_init(); for (funcNum = 0; ; funcNum++) { struct func_info_s { |