diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-02-09 14:31:53 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-02-09 14:31:53 +0000 |
commit | e2a004ad4ef502d43f0628b0618decc679d905ca (patch) | |
tree | d3db010138e8f2e32f26bf14b0cfccf1fd856b2a /libswscale/yuv2rgb.c | |
parent | fa58ba15f8e08675a40e93a83561d308fa2ad8e9 (diff) | |
download | ffmpeg-e2a004ad4ef502d43f0628b0618decc679d905ca.tar.gz |
Prefix visible YUV2RGB functions with sws_
Originally committed as revision 28496 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
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 |