tizen 2.0 init
[framework/multimedia/gst-plugins-base0.10.git] / gst / videoscale / vs_image.h
1 /*
2  * Image Scaling Functions
3  * Copyright (c) 2005 David A. Schleef <ds@schleef.org>
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
19  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
23  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
24  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25  * POSSIBILITY OF SUCH DAMAGE.
26  */
27
28 #ifndef __VS_IMAGE_H__
29 #define __VS_IMAGE_H__
30
31 #include <glib.h>
32 #include <_stdint.h>
33
34 typedef struct _VSImage VSImage;
35
36 struct _VSImage {
37   uint8_t *real_pixels;
38   int real_width;
39   int real_height;
40   int border_left, border_right;
41   int border_top, border_bottom;
42   uint8_t *pixels;
43   int width;
44   int height;
45   int stride;
46 };
47
48 void vs_image_scale_nearest_RGBA (const VSImage *dest, const VSImage *src,
49     uint8_t *tmpbuf);
50 void vs_image_scale_linear_RGBA (const VSImage *dest, const VSImage *src,
51     uint8_t *tmpbuf);
52 void vs_image_scale_lanczos_AYUV (const VSImage * dest, const VSImage * src,
53     uint8_t * tmpbuf, double sharpness, gboolean dither, int submethod,
54     double a, double sharpen);
55
56 void vs_image_scale_nearest_RGB (const VSImage *dest, const VSImage *src,
57     uint8_t *tmpbuf);
58 void vs_image_scale_linear_RGB (const VSImage *dest, const VSImage *src,
59     uint8_t *tmpbuf);
60
61 void vs_image_scale_nearest_YUYV (const VSImage *dest, const VSImage *src,
62     uint8_t *tmpbuf);
63 void vs_image_scale_linear_YUYV (const VSImage *dest, const VSImage *src,
64     uint8_t *tmpbuf);
65
66 void vs_image_scale_nearest_UYVY (const VSImage *dest, const VSImage *src,
67     uint8_t *tmpbuf);
68 void vs_image_scale_linear_UYVY (const VSImage *dest, const VSImage *src,
69     uint8_t *tmpbuf);
70
71 void vs_image_scale_nearest_Y (const VSImage *dest, const VSImage *src,
72     uint8_t *tmpbuf);
73 void vs_image_scale_linear_Y (const VSImage *dest, const VSImage *src,
74     uint8_t *tmpbuf);
75 void vs_image_scale_lanczos_Y (const VSImage *dest, const VSImage *src,
76     uint8_t *tmpbuf, double sharpness, gboolean dither, int submethod,
77     double a, double sharpen);
78
79 void vs_image_scale_nearest_RGB565 (const VSImage *dest, const VSImage *src,
80     uint8_t *tmpbuf);
81 void vs_image_scale_linear_RGB565 (const VSImage *dest, const VSImage *src,
82     uint8_t *tmpbuf);
83
84 void vs_image_scale_nearest_RGB555 (const VSImage *dest, const VSImage *src,
85     uint8_t *tmpbuf);
86 void vs_image_scale_linear_RGB555 (const VSImage *dest, const VSImage *src,
87     uint8_t *tmpbuf);
88
89 void vs_image_scale_nearest_Y16 (const VSImage *dest, const VSImage *src,
90     uint8_t *tmpbuf);
91 void vs_image_scale_linear_Y16 (const VSImage *dest, const VSImage *src,
92     uint8_t *tmpbuf);
93
94 void vs_image_scale_nearest_AYUV16 (const VSImage *dest, const VSImage *src,
95     uint8_t *tmpbuf);
96 void vs_image_scale_linear_AYUV16 (const VSImage *dest, const VSImage *src,
97     uint8_t *tmpbuf);
98
99 void vs_image_scale_nearest_AYUV64 (const VSImage * dest, const VSImage * src,
100     uint8_t * tmpbuf8);
101 void vs_image_scale_linear_AYUV64 (const VSImage * dest, const VSImage * src,
102     uint8_t * tmpbuf8);
103
104 #endif
105