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().


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28982 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2009-03-17 12:05:56 +00:00
parent 2e7a366dd9
commit 972614cb38
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;