changeset 867:48215b2c3888 libavcodec

16-bit and 15-bit rgb/bgr patch by (Joel Yliluoma <joel dot yliluoma at w-create dot com>) (note, rare formats disabled)
author michaelni
date Thu, 14 Nov 2002 19:46:14 +0000
parents 725ef4ea3ecc
children dfe7d66da6f0
files avcodec.h imgconvert.c
diffstat 2 files changed, 120 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/avcodec.h	Thu Nov 14 19:20:04 2002 +0000
+++ b/avcodec.h	Thu Nov 14 19:46:14 2002 +0000
@@ -69,7 +69,14 @@
     PIX_FMT_RGBA32,
     PIX_FMT_BGRA32,
     PIX_FMT_YUV410P,
-    PIX_FMT_YUV411P
+    PIX_FMT_YUV411P,
+    PIX_FMT_RGB565,
+    PIX_FMT_RGB555,
+//    PIX_FMT_RGB5551,
+    PIX_FMT_BGR565,
+    PIX_FMT_BGR555,
+//    PIX_FMT_GBR565,
+//    PIX_FMT_GBR555
 };
 
 /* currently unused, may be used if 24/32 bits samples ever supported */
--- a/imgconvert.c	Thu Nov 14 19:20:04 2002 +0000
+++ b/imgconvert.c	Thu Nov 14 19:46:14 2002 +0000
@@ -184,6 +184,90 @@
     }
 }
 
+#define rgb565_to_yuv420p(lum,cb,cr,src,width,height) rgbmisc_to_yuv420p((lum),(cb),(cr),(src),(width),(height),0x0800,31, 0x0020,63,0x0001,31)
+#define rgb555_to_yuv420p(lum,cb,cr,src,width,height) rgbmisc_to_yuv420p((lum),(cb),(cr),(src),(width),(height),0x0400,31, 0x0020,31,0x0001,31)
+#define rgb5551_to_yuv420p(lum,cb,cr,src,width,height) rgbmisc_to_yuv420p((lum),(cb),(cr),(src),(width),(height),0x0800,31, 0x0040,31,0x0002,31)
+#define bgr565_to_yuv420p(lum,cb,cr,src,width,height) rgbmisc_to_yuv420p((lum),(cb),(cr),(src),(width),(height),0x0001,31, 0x0020,63,0x0800,31)
+#define bgr555_to_yuv420p(lum,cb,cr,src,width,height) rgbmisc_to_yuv420p((lum),(cb),(cr),(src),(width),(height),0x0001,31, 0x0020,31,0x0400,31)
+#define gbr565_to_yuv420p(lum,cb,cr,src,width,height) rgbmisc_to_yuv420p((lum),(cb),(cr),(src),(width),(height),0x0001,31, 0x0800,31,0x0040,63)
+#define gbr555_to_yuv420p(lum,cb,cr,src,width,height) rgbmisc_to_yuv420p((lum),(cb),(cr),(src),(width),(height),0x0001,31, 0x0400,31,0x0020,31)
+
+static void rgbmisc_to_yuv420p
+  (UINT8 *lum, UINT8 *cb, UINT8 *cr,
+   UINT8 *src, int width, int height,
+   
+   UINT16 R_LOWMASK, UINT16 R_MAX,
+   UINT16 G_LOWMASK, UINT16 G_MAX,
+   UINT16 B_LOWMASK, UINT16 B_MAX
+  )
+{
+    int wrap, wrap2, x, y;
+    int r, g, b, r1, g1, b1;
+    UINT8 *p;
+    UINT16 pixel;
+
+    wrap = width;
+    wrap2 = width * 2;
+    p = src;
+    for(y=0;y<height;y+=2) {
+        for(x=0;x<width;x+=2) {
+            pixel = p[0] | (p[1]<<8);
+            r = (((pixel/R_LOWMASK) & R_MAX) * (0x100 / (R_MAX+1)));
+            g = (((pixel/G_LOWMASK) & G_MAX) * (0x100 / (G_MAX+1)));
+            b = (((pixel/B_LOWMASK) & B_MAX) * (0x100 / (B_MAX+1)));
+            r1 = r;
+            g1 = g;
+            b1 = b;
+            lum[0] = (FIX(0.29900) * r + FIX(0.58700) * g + 
+                      FIX(0.11400) * b + ONE_HALF) >> SCALEBITS;
+
+            pixel = p[2] | (p[3]<<8);
+            r = (((pixel/R_LOWMASK) & R_MAX) * (0x100 / (R_MAX+1)));
+            g = (((pixel/G_LOWMASK) & G_MAX) * (0x100 / (G_MAX+1)));
+            b = (((pixel/B_LOWMASK) & B_MAX) * (0x100 / (B_MAX+1)));
+            r1 += r;
+            g1 += g;
+            b1 += b;
+            lum[1] = (FIX(0.29900) * r + FIX(0.58700) * g + 
+                      FIX(0.11400) * b + ONE_HALF) >> SCALEBITS;
+            p += wrap2;
+            lum += wrap;
+
+            pixel = p[0] | (p[1]<<8);
+            r = (((pixel/R_LOWMASK) & R_MAX) * (0x100 / (R_MAX+1)));
+            g = (((pixel/G_LOWMASK) & G_MAX) * (0x100 / (G_MAX+1)));
+            b = (((pixel/B_LOWMASK) & B_MAX) * (0x100 / (B_MAX+1)));
+            r1 += r;
+            g1 += g;
+            b1 += b;
+            lum[0] = (FIX(0.29900) * r + FIX(0.58700) * g + 
+                      FIX(0.11400) * b + ONE_HALF) >> SCALEBITS;
+            pixel = p[2] | (p[3]<<8);
+            r = (((pixel/R_LOWMASK) & R_MAX) * (0x100 / (R_MAX+1)));
+            g = (((pixel/G_LOWMASK) & G_MAX) * (0x100 / (G_MAX+1)));
+            b = (((pixel/B_LOWMASK) & B_MAX) * (0x100 / (B_MAX+1)));
+            r1 += r;
+            g1 += g;
+            b1 += b;
+            lum[1] = (FIX(0.29900) * r + FIX(0.58700) * g + 
+                      FIX(0.11400) * b + ONE_HALF) >> SCALEBITS;
+            
+            cb[0] = ((- FIX(0.16874) * r1 - FIX(0.33126) * g1 + 
+                      FIX(0.50000) * b1 + 4 * ONE_HALF - 1) >> (SCALEBITS + 2)) + 128;
+            cr[0] = ((FIX(0.50000) * r1 - FIX(0.41869) * g1 - 
+                     FIX(0.08131) * b1 + 4 * ONE_HALF - 1) >> (SCALEBITS + 2)) + 128;
+
+            cb++;
+            cr++;
+            p += -wrap2 + 2 * 2;
+            lum += -wrap + 2;
+        }
+        p += wrap2;
+        lum += wrap;
+    }
+}
+
+
 static void bgr24_to_yuv420p(UINT8 *lum, UINT8 *cb, UINT8 *cr,
                               UINT8 *src, int width, int height)
 {
@@ -730,6 +814,34 @@
             bgra32_to_yuv420p(dst->data[0], dst->data[1], dst->data[2], 
                              src->data[0], width, height);
             break;
+        case PIX_FMT_RGB565:
+            rgb565_to_yuv420p(dst->data[0], dst->data[1], dst->data[2], 
+                             src->data[0], width, height);
+            break;
+        case PIX_FMT_RGB555:
+            rgb555_to_yuv420p(dst->data[0], dst->data[1], dst->data[2], 
+                             src->data[0], width, height);
+            break;
+/*        case PIX_FMT_RGB5551:
+            rgb5551_to_yuv420p(dst->data[0], dst->data[1], dst->data[2], 
+                             src->data[0], width, height);
+            break;*/
+        case PIX_FMT_BGR565:
+            bgr565_to_yuv420p(dst->data[0], dst->data[1], dst->data[2], 
+                             src->data[0], width, height);
+            break;
+        case PIX_FMT_BGR555:
+            bgr555_to_yuv420p(dst->data[0], dst->data[1], dst->data[2], 
+                             src->data[0], width, height);
+            break;
+/*        case PIX_FMT_GBR565:
+            gbr565_to_yuv420p(dst->data[0], dst->data[1], dst->data[2], 
+                             src->data[0], width, height);
+            break;
+        case PIX_FMT_GBR555:
+            gbr555_to_yuv420p(dst->data[0], dst->data[1], dst->data[2],
+                             src->data[0], width, height);
+            break;*/
         default:
             return -1;
         }