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_yuv420p_rgba32_sse2(AVFrame *in, AVFrame *out, int width, int height); 11 void gfx_conv_yuv422p_rgba32_sse2(AVFrame *in, AVFrame *out, int width, int height); 12 void gfx_conv_yuv420p_rgba32_sse(AVFrame *in, AVFrame *out, int width, int height); 13 void gfx_conv_yuv422p_rgba32_sse(AVFrame *in, AVFrame *out, int width, int height); 14 15 #endif 16