Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2016-07-13 21:14:38 +0300
committerDiego Biurrun <diego@biurrun.de>2016-07-16 18:38:37 +0300
commitfacdfe40805559963b5875931af9406ed5ddcd5c (patch)
treef7d3f96d2922bc8d241efa12509468f9f801a850 /libswscale/tests
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/tests')
-rw-r--r--libswscale/tests/colorspace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/tests/colorspace.c b/libswscale/tests/colorspace.c
index 962b11a857..23a1945401 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 {