audiotestsrc: fix rounding errors that might cause segments to be one sample too...
[platform/upstream/gstreamer.git] / gst / videoconvert / 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 #include <gst/video/video.h>
24 #include "gstcms.h"
25
26 G_BEGIN_DECLS
27
28 typedef struct _VideoConvert VideoConvert;
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   guint8 *tmpline;
50   guint16 *tmpline16;
51   guint16 *errline;
52
53   void (*convert) (VideoConvert *convert, GstVideoFrame *dest, const GstVideoFrame *src);
54   void (*matrix) (VideoConvert *convert, guint8 * pixels);
55   void (*matrix16) (VideoConvert *convert, guint16 * pixels);
56   void (*dither16) (VideoConvert *convert, guint16 * pixels, int j);
57 };
58
59 VideoConvert *   videoconvert_convert_new            (GstVideoInfo *in_info,
60                                                       GstVideoInfo *out_info);
61 void             videoconvert_convert_free           (VideoConvert * convert);
62
63 void             videoconvert_convert_set_dither     (VideoConvert * convert, int type);
64
65 void             videoconvert_convert_convert        (VideoConvert * convert,
66                                                       GstVideoFrame *dest, const GstVideoFrame *src);
67
68
69 G_END_DECLS
70
71 #endif /* __GST_COLORSPACE_H__ */