Fix the "64 colors flx too dark" bug.
[platform/upstream/gst-plugins-good.git] / gst / flx / flx_color.c
1 /* Gnome-Streamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include <string.h>
21 #include <gst/gst.h>
22
23
24 #include "flx_color.h"
25
26 FlxColorSpaceConverter *
27 flx_colorspace_converter_new(gint width, gint height)
28 {
29   FlxColorSpaceConverter *new = g_malloc(sizeof(FlxColorSpaceConverter));
30
31   new->width = width;
32   new->height = height;
33
34   memset(new->palvec, 0, sizeof(new->palvec));  
35   return new;
36 }
37
38 void
39 flx_colorspace_converter_destroy(FlxColorSpaceConverter *flxpal)
40 {
41   g_return_if_fail(flxpal != NULL);
42
43   g_free(flxpal);
44 }
45
46 void
47 flx_colorspace_convert(FlxColorSpaceConverter *flxpal, guchar *src, guchar *dest)
48 {
49   guint size, col;
50
51   g_return_if_fail(flxpal != NULL);
52   g_return_if_fail(src != dest);
53
54
55   size = flxpal->width * flxpal->height;
56
57   while(size--) {
58     col     = (*src++ * 3);
59     *dest++ = flxpal->palvec[col+2];
60     *dest++ = flxpal->palvec[col+1];
61     *dest++ = flxpal->palvec[col];
62     *dest++ = 0;
63   }
64
65 }
66
67
68 void 
69 flx_set_palette_vector(FlxColorSpaceConverter *flxpal, guint start, guint num, guchar *newpal, gint scale)
70 {
71   guint  grab;
72   
73   g_return_if_fail(flxpal != NULL);
74   g_return_if_fail(start < 0x100);
75
76   grab = ((start + num) > 0x100 ? 0x100 - start : num);
77
78   if (scale) {
79     gint i = 0;
80
81     start *= 3;
82     while (grab) {
83       flxpal->palvec[start++] = newpal[i++] << scale;
84       flxpal->palvec[start++] = newpal[i++] << scale;
85       flxpal->palvec[start++] = newpal[i++] << scale;
86       grab--;
87     }
88   }
89   else {
90     memcpy(&flxpal->palvec[start * 3], newpal, grab * 3);
91   }
92
93 }
94
95 void
96 flx_set_color(FlxColorSpaceConverter *flxpal, guint colr, guint red, guint green, guint blue, gint scale)
97 {
98   
99   g_return_if_fail(flxpal != NULL);
100   g_return_if_fail(colr < 0x100);
101
102   flxpal->palvec[(colr * 3)]     = red << scale;
103   flxpal->palvec[(colr * 3) + 1] = green << scale;
104   flxpal->palvec[(colr * 3) + 2] = blue << scale;
105 }
106
107