swap the cr and the cb component for the yuv420P_to_rgb no mmx routine
authorJeremy Simon <jsimon13@yahoo.fr>
Tue, 7 May 2002 22:13:16 +0000 (22:13 +0000)
committerJeremy Simon <jsimon13@yahoo.fr>
Tue, 7 May 2002 22:13:16 +0000 (22:13 +0000)
Original commit message from CVS:
swap the cr and the cb component for the yuv420P_to_rgb no mmx routine

common
ext/hermes/yuv2rgb.c

diff --git a/common b/common
index e5997d9..8d06061 160000 (submodule)
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit e5997d9e2b4e162ad423f9b9ec3ac9b29e12bb05
+Subproject commit 8d060610bbe0af2f159b40c8b23076896b4104a5
index ec922d8..8fcce91 100644 (file)
@@ -187,8 +187,8 @@ static void gst_colorspace_yuv420P_to_rgb32(GstColorSpaceConverter *space, unsig
 
   gst_colorspace_yuv_to_rgb32(space->color_tables,
                        src,                                    /* Y component */
-                        src+size,                              /* cr component */
                        src+size+(size>>2),                     /* cb component */
+                        src+size,                              /* cr component */
                         dest,
                        space->height,
                        space->width);
@@ -203,8 +203,8 @@ static void gst_colorspace_yuv420P_to_rgb24(GstColorSpaceConverter *space, unsig
 
   gst_colorspace_yuv_to_rgb24(space->color_tables,
                        src,                                    /* Y component */
-                        src+size,                              /* cr component */
                        src+size+(size>>2),                     /* cb component */
+                        src+size,                              /* cr component */
                         dest,
                        space->height,
                        space->width);
@@ -219,8 +219,8 @@ static void gst_colorspace_yuv420P_to_rgb16(GstColorSpaceConverter *space, unsig
 
   gst_colorspace_yuv_to_rgb16(space->color_tables,
                        src,                                    /* Y component */
-                        src+size,                              /* cr component */
                        src+size+(size>>2),                     /* cb component */
+                        src+size,                              /* cr component */
                         dest,
                        space->height,
                        space->width);