Commit 5206a850 authored by diego's avatar diego

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: file:///var/local/repositories/mplayer/trunk/libswscale@28982 b3059339-0415-0410-9bf9-f77b7e298cf2
parent c8684bc4
......@@ -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