Commit 852ca0e5 authored by Diego Biurrun's avatar Diego Biurrun

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
parent 7f5ee4ea
......@@ -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)
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment