comparison libswscale/yuv2rgb.c @ 28947:577f9ddbe24f

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().
author diego
date Tue, 17 Mar 2009 12:05:56 +0000
parents cf087cb82252
children 1e56ea9937ce
comparison
equal deleted inserted replaced
28946:f0687e100b07 28947:577f9ddbe24f
458 t = sws_yuv2rgb_init_altivec(c); 458 t = sws_yuv2rgb_init_altivec(c);
459 #endif 459 #endif
460 460
461 #if ARCH_BFIN 461 #if ARCH_BFIN
462 if (c->flags & SWS_CPU_CAPS_BFIN) 462 if (c->flags & SWS_CPU_CAPS_BFIN)
463 t = sws_ff_bfin_yuv2rgb_get_func_ptr(c); 463 t = sws_yuv2rgb_get_func_ptr_bfin(c);
464 #endif 464 #endif
465 465
466 if (t) 466 if (t)
467 return t; 467 return t;
468 468