summaryrefslogtreecommitdiffstats
path: root/libswscale/yuv2rgb.c
diff options
context:
space:
mode:
Diffstat (limited to 'libswscale/yuv2rgb.c')
-rw-r--r--libswscale/yuv2rgb.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/libswscale/yuv2rgb.c b/libswscale/yuv2rgb.c
index 98a3569d85..9f3f071213 100644
--- a/libswscale/yuv2rgb.c
+++ b/libswscale/yuv2rgb.c
@@ -611,6 +611,14 @@ SwsFunc yuv2rgb_get_func_ptr (SwsContext *c)
}
#endif
+#ifdef ARCH_BFIN
+ if (c->flags & SWS_CPU_CAPS_BFIN)
+ {
+ SwsFunc t = ff_bfin_yuv2rgb_get_func_ptr (c);
+ if (t) return t;
+ }
+#endif
+
av_log(c, AV_LOG_WARNING, "No accelerated colorspace conversion found\n");
switch(c->dstFormat){