gst-libs/gst/video/video.h: Fix caps template names to be understandable.
[platform/upstream/gst-plugins-good.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, guchar *dest)
51 {
52   guint size, col;
53
54   g_return_if_fail(flxpal != NULL);
55   g_return_if_fail(src != dest);
56
57
58   size = flxpal->width * flxpal->height;
59
60   while(size--) {
61     col     = (*src++ * 3);
62     *dest++ = flxpal->palvec[col+2];
63     *dest++ = flxpal->palvec[col+1];
64     *dest++ = flxpal->palvec[col];
65     *dest++ = 0;
66   }
67
68 }
69
70
71 void 
72 flx_set_palette_vector(FlxColorSpaceConverter *flxpal, guint start, guint num, guchar *newpal, gint scale)
73 {
74   guint  grab;
75   
76   g_return_if_fail(flxpal != NULL);
77   g_return_if_fail(start < 0x100);
78
79   grab = ((start + num) > 0x100 ? 0x100 - start : num);
80
81   if (scale) {
82     gint i = 0;
83
84     start *= 3;
85     while (grab) {
86       flxpal->palvec[start++] = newpal[i++] << scale;
87       flxpal->palvec[start++] = newpal[i++] << scale;
88       flxpal->palvec[start++] = newpal[i++] << scale;
89       grab--;
90     }
91   }
92   else {
93     memcpy(&flxpal->palvec[start * 3], newpal, grab * 3);
94   }
95
96 }
97
98 void
99 flx_set_color(FlxColorSpaceConverter *flxpal, guint colr, guint red, guint green, guint blue, gint scale)
100 {
101   
102   g_return_if_fail(flxpal != NULL);
103   g_return_if_fail(colr < 0x100);
104
105   flxpal->palvec[(colr * 3)]     = red << scale;
106   flxpal->palvec[(colr * 3) + 1] = green << scale;
107   flxpal->palvec[(colr * 3) + 2] = blue << scale;
108 }
109
110