Fix ff_bfin_yuv2rgb_get_func_ptr() vs. sws_ff_bfin_yuv2rgb_get_func_ptr() name

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
This commit is contained in:
Diego Biurrun 2009-03-17 12:05:56 +00:00
parent 7f5ee4eaa9
commit 852ca0e57d
2 changed files with 2 additions and 2 deletions

View 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)

View 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;