Tizen 2.0 Release
[framework/multimedia/gst-plugins-good0.10.git] / gst / flx / flx_color.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@temple-baptist.com>
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 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
23
24 #include <string.h>
25 #include <gst/gst.h>
26
27 #include "flx_color.h"
28
29 FlxColorSpaceConverter *
30 flx_colorspace_converter_new (gint width, gint height)
31 {
32   FlxColorSpaceConverter *new = g_malloc (sizeof (FlxColorSpaceConverter));
33
34   new->width = width;
35   new->height = height;
36
37   memset (new->palvec, 0, sizeof (new->palvec));
38   return new;
39 }
40
41 void
42 flx_colorspace_converter_destroy (FlxColorSpaceConverter * flxpal)
43 {
44   g_return_if_fail (flxpal != NULL);
45
46   g_free (flxpal);
47 }
48
49 void
50 flx_colorspace_convert (FlxColorSpaceConverter * flxpal, guchar * src,
51     guchar * dest)
52 {
53   guint size, col;
54
55   g_return_if_fail (flxpal != NULL);
56   g_return_if_fail (src != dest);
57
58
59   size = flxpal->width * flxpal->height;
60
61   while (size--) {
62     col = (*src++ * 3);
63
64 #if G_BYTE_ORDER == G_BIG_ENDIAN
65     *dest++ = 0;
66     *dest++ = flxpal->palvec[col];
67     *dest++ = flxpal->palvec[col + 1];
68     *dest++ = flxpal->palvec[col + 2];
69 #else
70     *dest++ = flxpal->palvec[col + 2];
71     *dest++ = flxpal->palvec[col + 1];
72     *dest++ = flxpal->palvec[col];
73     *dest++ = 0;
74 #endif
75   }
76
77 }
78
79
80 void
81 flx_set_palette_vector (FlxColorSpaceConverter * flxpal, guint start, guint num,
82     guchar * newpal, gint scale)
83 {
84   guint grab;
85
86   g_return_if_fail (flxpal != NULL);
87   g_return_if_fail (start < 0x100);
88
89   grab = ((start + num) > 0x100 ? 0x100 - start : num);
90
91   if (scale) {
92     gint i = 0;
93
94     start *= 3;
95     while (grab) {
96       flxpal->palvec[start++] = newpal[i++] << scale;
97       flxpal->palvec[start++] = newpal[i++] << scale;
98       flxpal->palvec[start++] = newpal[i++] << scale;
99       grab--;
100     }
101   } else {
102     memcpy (&flxpal->palvec[start * 3], newpal, grab * 3);
103   }
104
105 }
106
107 void
108 flx_set_color (FlxColorSpaceConverter * flxpal, guint colr, guint red,
109     guint green, guint blue, gint scale)
110 {
111
112   g_return_if_fail (flxpal != NULL);
113   g_return_if_fail (colr < 0x100);
114
115   flxpal->palvec[(colr * 3)] = red << scale;
116   flxpal->palvec[(colr * 3) + 1] = green << scale;
117   flxpal->palvec[(colr * 3) + 2] = blue << scale;
118 }