mirror of https://git.ffmpeg.org/ffmpeg.git
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:
parent
7f5ee4eaa9
commit
852ca0e57d
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue