videoaggregator: Create a new GstVideoAggregator baseclass
[platform/upstream/gstreamer.git] / gst-libs / gst / video / videoconvert.h
1 /* Video conversion functions
2  * Copyright (C) 2010 David Schleef <ds@schleef.org>
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., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 #ifndef __COLORSPACE_H__
21 #define __COLORSPACE_H__
22
23 typedef struct _VideoConvert VideoConvert;
24
25 #include <gst/video/video.h>
26 #include "gstcms.h"
27
28 G_BEGIN_DECLS
29
30 typedef enum {
31   DITHER_NONE,
32   DITHER_VERTERR,
33   DITHER_HALFTONE
34 } ColorSpaceDitherMethod;
35
36 struct _VideoConvert {
37   GstVideoInfo in_info;
38   GstVideoInfo out_info;
39
40   gint width;
41   gint height;
42
43   gint in_bits;
44   gint out_bits;
45   gint cmatrix[4][4];
46
47   ColorSpaceDitherMethod dither;
48
49   guint lines;
50
51   guint n_tmplines;
52   gpointer *tmplines;
53   guint16 *errline;
54
55   GstVideoChromaResample *upsample;
56   guint up_n_lines;
57   gint up_offset;
58   GstVideoChromaResample *downsample;
59   guint down_n_lines;
60   gint down_offset;
61
62   void (*convert)      (VideoConvert *convert, GstVideoFrame *dest, const GstVideoFrame *src);
63   void (*matrix)       (VideoConvert *convert, gpointer pixels);
64   void (*dither16)     (VideoConvert *convert, guint16 * pixels, int j);
65
66 };
67
68 VideoConvert *   videoconvert_convert_new            (GstVideoInfo *in_info,
69                                                       GstVideoInfo *out_info);
70 void             videoconvert_convert_free           (VideoConvert * convert);
71
72 void             videoconvert_convert_set_dither     (VideoConvert * convert, int type);
73
74 void             videoconvert_convert_convert        (VideoConvert * convert,
75                                                       GstVideoFrame *dest, const GstVideoFrame *src);
76
77
78 G_END_DECLS
79
80 #endif /* __GST_COLORSPACE_H__ */