diff options
author | Marc Hoffman <mmh@pleasantst.com> | 2007-05-13 19:22:32 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2007-05-13 19:22:32 +0000 |
commit | d3f3eea92d47c3c3250ffc7cf567ed44bf31615a (patch) | |
tree | e07786d7133e2f5ba2e991b41aaa738d7cd09092 /libswscale/swscale.h | |
parent | 79d4c96a1a708f8da145121cee118c7bdd596344 (diff) | |
download | ffmpeg-d3f3eea92d47c3c3250ffc7cf567ed44bf31615a.tar.gz |
Blackfin optimized YUV420 to RGB CSC Color Space Converters.
YUV2 -> RGB BGR for 565, 555 and 888 a.k.a. 24bit color.
Speed-up compared to C version compiled with -O3 187.28%
Patch by Marc Hoffman %mmh A pleasantst P com%
Original thread:
Date: May 9, 2007 2:46 AM
Subject: [FFmpeg-devel] PATCH BlackFin yuv2rgb color space conversion
Originally committed as revision 23307 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale.h')
-rw-r--r-- | libswscale/swscale.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h index a86ef45348..adad02f5a5 100644 --- a/libswscale/swscale.h +++ b/libswscale/swscale.h @@ -74,6 +74,7 @@ extern "C" { #define SWS_CPU_CAPS_MMX2 0x20000000 #define SWS_CPU_CAPS_3DNOW 0x40000000 #define SWS_CPU_CAPS_ALTIVEC 0x10000000 +#define SWS_CPU_CAPS_BFIN 0x01000000 #define SWS_MAX_REDUCE_CUTOFF 0.002 |