1 #ifndef _GFX_CONV_MMX_H 2 #define _GFX_CONV_MMX_H 3 4 // BeOS and libavcodec bitmap formats 5 #include <GraphicsDefs.h> 6 #include "libavcodec/avcodec.h" 7 8 void gfx_conv_null_mmx(AVFrame *in, AVFrame *out, int width, int height); 9 10 void gfx_conv_yuv410p_ycbcr422_mmx(AVFrame *in, AVFrame *out, int width, int height); 11 void gfx_conv_yuv411p_ycbcr422_mmx(AVFrame *in, AVFrame *out, int width, int height); 12 void gfx_conv_yuv420p_ycbcr422_mmx(AVFrame *in, AVFrame *out, int width, int height); 13 14 void gfx_conv_yuv410p_rgb32_mmx(AVFrame *in, AVFrame *out, int width, int height); 15 void gfx_conv_yuv411p_rgb32_mmx(AVFrame *in, AVFrame *out, int width, int height); 16 void gfx_conv_yuv420p_rgba32_sse2(AVFrame *in, AVFrame *out, int width, int height); 17 void gfx_conv_yuv422p_rgba32_sse2(AVFrame *in, AVFrame *out, int width, int height); 18 void gfx_conv_yuv420p_rgba32_sse(AVFrame *in, AVFrame *out, int width, int height); 19 void gfx_conv_yuv422p_rgba32_sse(AVFrame *in, AVFrame *out, int width, int height); 20 21 #endif 22