Branch data Line data Source code
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 : 0 : flx_colorspace_converter_new (gint width, gint height)
31 : : {
32 : 0 : FlxColorSpaceConverter *new = g_malloc (sizeof (FlxColorSpaceConverter));
33 : :
34 : 0 : new->width = width;
35 : 0 : new->height = height;
36 : :
37 : 0 : memset (new->palvec, 0, sizeof (new->palvec));
38 : 0 : return new;
39 : : }
40 : :
41 : : void
42 : 0 : flx_colorspace_converter_destroy (FlxColorSpaceConverter * flxpal)
43 : : {
44 [ # # ]: 0 : g_return_if_fail (flxpal != NULL);
45 : :
46 : 0 : g_free (flxpal);
47 : : }
48 : :
49 : : void
50 : 0 : flx_colorspace_convert (FlxColorSpaceConverter * flxpal, guchar * src,
51 : : guchar * dest)
52 : : {
53 : : guint size, col;
54 : :
55 [ # # ]: 0 : g_return_if_fail (flxpal != NULL);
56 [ # # ]: 0 : g_return_if_fail (src != dest);
57 : :
58 : :
59 : 0 : size = flxpal->width * flxpal->height;
60 : :
61 [ # # ]: 0 : while (size--) {
62 : 0 : 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 : 0 : *dest++ = flxpal->palvec[col + 2];
71 : 0 : *dest++ = flxpal->palvec[col + 1];
72 : 0 : *dest++ = flxpal->palvec[col];
73 : 0 : *dest++ = 0;
74 : : #endif
75 : : }
76 : :
77 : : }
78 : :
79 : :
80 : : void
81 : 0 : flx_set_palette_vector (FlxColorSpaceConverter * flxpal, guint start, guint num,
82 : : guchar * newpal, gint scale)
83 : : {
84 : : guint grab;
85 : :
86 [ # # ]: 0 : g_return_if_fail (flxpal != NULL);
87 [ # # ]: 0 : g_return_if_fail (start < 0x100);
88 : :
89 [ # # ]: 0 : grab = ((start + num) > 0x100 ? 0x100 - start : num);
90 : :
91 [ # # ]: 0 : if (scale) {
92 : 0 : gint i = 0;
93 : :
94 : 0 : start *= 3;
95 [ # # ]: 0 : while (grab) {
96 : 0 : flxpal->palvec[start++] = newpal[i++] << scale;
97 : 0 : flxpal->palvec[start++] = newpal[i++] << scale;
98 : 0 : flxpal->palvec[start++] = newpal[i++] << scale;
99 : 0 : grab--;
100 : : }
101 : : } else {
102 : 0 : memcpy (&flxpal->palvec[start * 3], newpal, grab * 3);
103 : : }
104 : :
105 : : }
106 : :
107 : : void
108 : 0 : flx_set_color (FlxColorSpaceConverter * flxpal, guint colr, guint red,
109 : : guint green, guint blue, gint scale)
110 : : {
111 : :
112 [ # # ]: 0 : g_return_if_fail (flxpal != NULL);
113 [ # # ]: 0 : g_return_if_fail (colr < 0x100);
114 : :
115 : 0 : flxpal->palvec[(colr * 3)] = red << scale;
116 : 0 : flxpal->palvec[(colr * 3) + 1] = green << scale;
117 : 0 : flxpal->palvec[(colr * 3) + 2] = blue << scale;
118 : : }
|