diff options
author | kostya <kostya@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-02-09 14:31:53 +0000 |
---|---|---|
committer | kostya <kostya@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-02-09 14:31:53 +0000 |
commit | ab3f56987f7f26e5a8fcb81c0236e4c514110ba9 (patch) | |
tree | 513eb03ccb33b5918974e29478617fc539a77a5b /libswscale/yuv2rgb.c | |
parent | c5bf12666b9e8ab885cfac6735732d4aee5e6d26 (diff) | |
download | mpv-ab3f56987f7f26e5a8fcb81c0236e4c514110ba9.tar.bz2 mpv-ab3f56987f7f26e5a8fcb81c0236e4c514110ba9.tar.xz |
Prefix visible YUV2RGB functions with sws_
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28496 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libswscale/yuv2rgb.c')
-rw-r--r-- | libswscale/yuv2rgb.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libswscale/yuv2rgb.c b/libswscale/yuv2rgb.c index 507f0b55bb..fe90a04f22 100644 --- a/libswscale/yuv2rgb.c +++ b/libswscale/yuv2rgb.c @@ -481,7 +481,7 @@ PROLOG(yuv2rgb_c_1_ordered_dither, uint8_t) dst_2[0]= out_2; EPILOG(1) -SwsFunc yuv2rgb_get_func_ptr (SwsContext *c) +SwsFunc sws_yuv2rgb_get_func_ptr (SwsContext *c) { #if HAVE_MMX2 || HAVE_MMX if (c->flags & SWS_CPU_CAPS_MMX2){ @@ -503,20 +503,20 @@ SwsFunc yuv2rgb_get_func_ptr (SwsContext *c) #endif #if HAVE_VIS { - SwsFunc t= yuv2rgb_init_vis(c); + SwsFunc t= sws_yuv2rgb_init_vis(c); if (t) return t; } #endif #if CONFIG_MLIB { - SwsFunc t= yuv2rgb_init_mlib(c); + SwsFunc t= sws_yuv2rgb_init_mlib(c); if (t) return t; } #endif #if HAVE_ALTIVEC if (c->flags & SWS_CPU_CAPS_ALTIVEC) { - SwsFunc t = yuv2rgb_init_altivec(c); + SwsFunc t = sws_yuv2rgb_init_altivec(c); if (t) return t; } #endif @@ -563,7 +563,7 @@ static int div_round (int dividend, int divisor) return -((-dividend + (divisor>>1)) / divisor); } -int yuv2rgb_c_init_tables (SwsContext *c, const int inv_table[4], int fullRange, int brightness, int contrast, int saturation) +int sws_yuv2rgb_c_init_tables (SwsContext *c, const int inv_table[4], int fullRange, int brightness, int contrast, int saturation) { const int isRgb = c->dstFormat==PIX_FMT_RGB32 || c->dstFormat==PIX_FMT_RGB32_1 |