changeset 27589:4a0064f2424f

Remove BGR24 support since it has never worked anyway.
author syrjala
date Mon, 15 Sep 2008 20:35:05 +0000
parents 9b767bba79fb
children 4c4389f2aba2
files libvo/vo_dfbmga.c
diffstat 1 files changed, 0 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/vo_dfbmga.c	Mon Sep 15 16:32:31 2008 +0000
+++ b/libvo/vo_dfbmga.c	Mon Sep 15 20:35:05 2008 +0000
@@ -136,8 +136,6 @@
           return "ARGB";
      case DSPF_RGB32:
           return "RGB32";
-     case DSPF_RGB24:
-	  return "RGB24";
      case DSPF_RGB16:
 	  return "RGB16";
      case DSPF_ARGB1555:
@@ -169,8 +167,6 @@
      switch (format) {
      case IMGFMT_BGR32:
 	  return DSPF_RGB32;
-     case IMGFMT_BGR24:
-	  return DSPF_RGB24;
      case IMGFMT_BGR16:
 	  return DSPF_RGB16;
      case IMGFMT_BGR15:
@@ -894,7 +890,6 @@
 {
      switch (format) {
           case IMGFMT_BGR32:
-          case IMGFMT_BGR24:
           case IMGFMT_BGR16:
           case IMGFMT_BGR15:
           case IMGFMT_UYVY:
@@ -991,11 +986,6 @@
                                dst + pitch * y0 + 4 * x0,
                                pitch );
 	  break;
-     case DSPF_RGB24:
-	  vo_draw_alpha_rgb24( w, h, src, srca, stride,
-                               dst + pitch * y0 + 3 * x0,
-                               pitch );
-	  break;
      case DSPF_RGB16:
 	  vo_draw_alpha_rgb16( w, h, src, srca, stride,
                                dst + pitch * y0 + 2 * x0,