summaryrefslogtreecommitdiff
path: root/src/video_out/yuv2rgb.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_out/yuv2rgb.h')
-rw-r--r--src/video_out/yuv2rgb.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_out/yuv2rgb.h b/src/video_out/yuv2rgb.h
index 8efbbfbd9..6cf7e0e5c 100644
--- a/src/video_out/yuv2rgb.h
+++ b/src/video_out/yuv2rgb.h
@@ -57,7 +57,7 @@ struct yuv2rgb_s {
/* call once on startup */
-yuv2rgb_t *yuv2rgb_init (int mode);
+yuv2rgb_t *yuv2rgb_init (int mode, int swapped);
/*
* set up yuv2rgb function, determine scaling parameters if necessary
@@ -73,9 +73,9 @@ int yuv2rgb_setup (yuv2rgb_t *this,
* internal stuff below this line
*/
-void yuv2rgb_init_mmxext (yuv2rgb_t *this, int mode);
-void yuv2rgb_init_mmx (yuv2rgb_t *this, int mode);
-void yuv2rgb_init_mlib (yuv2rgb_t *this, int mode);
+void yuv2rgb_init_mmxext (yuv2rgb_t *this, int mode, int swapped);
+void yuv2rgb_init_mmx (yuv2rgb_t *this, int mode, int swapped);
+void yuv2rgb_init_mlib (yuv2rgb_t *this, int mode, int swapped);
/*
void Color565DitherYV12MMX1X(unsigned char *lum, unsigned char *cr,