Fix ff_bfin_yuv2rgb_get_func_ptr() vs. sws_ff_bfin_yuv2rgb_get_func_ptr() name
authorDiego Biurrun <diego@biurrun.de>
Tue, 17 Mar 2009 12:05:56 +0000 (12:05 +0000)
committerDiego Biurrun <diego@biurrun.de>
Tue, 17 Mar 2009 12:05:56 +0000 (12:05 +0000)
mismatch. The function is now called sws_yuv2rgb_get_func_ptr_bfin().

Originally committed as revision 28982 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale

libswscale/yuv2rgb.c
libswscale/yuv2rgb_bfin.c

index 309cb8d..4d04fcc 100644 (file)
@@ -460,7 +460,7 @@ SwsFunc sws_yuv2rgb_get_func_ptr(SwsContext *c)
 
 #if ARCH_BFIN
     if (c->flags & SWS_CPU_CAPS_BFIN)
-        t = sws_ff_bfin_yuv2rgb_get_func_ptr(c);
+        t = sws_yuv2rgb_get_func_ptr_bfin(c);
 #endif
 
     if (t)
index 5bbd77b..b887907 100644 (file)
@@ -181,7 +181,7 @@ static int bfin_yuv420_bgr565(SwsContext *c,
 }
 
 
-SwsFunc ff_bfin_yuv2rgb_get_func_ptr(SwsContext *c)
+SwsFunc sws_yuv2rgb_get_func_ptr_bfin(SwsContext *c)
 {
     SwsFunc f;