Tizen 2.0 Release
[framework/multimedia/gstreamer-vaapi.git] / gst / vaapi / gstvaapidownload.h
1 /*
2  *  gstvaapidownload.h - VA-API video downloader
3  *
4  *  Copyright (C) 2010-2011 Splitted-Desktop Systems
5  *  Copyright (C) 2011-2012 Intel Corporation
6  *
7  *  This program is free software; you can redistribute it and/or
8  *  modify it under the terms of the GNU Lesser General Public License
9  *  as published by the Free Software Foundation; either version 2.1
10  *  of the License, or (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  *  Lesser General Public License for more details.
16  *
17  *  You should have received a copy of the GNU Lesser General Public
18  *  License along with this program; if not, write to the Free
19  *  Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20  *  Boston, MA 02110-1301 USA
21 */
22
23 #ifndef GST_VAAPIDOWNLOAD_H
24 #define GST_VAAPIDOWNLOAD_H
25
26 #include <gst/base/gstbasetransform.h>
27 #include <gst/vaapi/gstvaapidisplay.h>
28 #include <gst/vaapi/gstvaapisurface.h>
29 #include <gst/vaapi/gstvaapiimagepool.h>
30 #include <gst/vaapi/gstvaapisurfacepool.h>
31 #include <gst/vaapi/gstvaapivideobuffer.h>
32
33 G_BEGIN_DECLS
34
35 #define GST_TYPE_VAAPIDOWNLOAD \
36     (gst_vaapidownload_get_type())
37
38 #define GST_VAAPIDOWNLOAD(obj)                          \
39     (G_TYPE_CHECK_INSTANCE_CAST((obj),                  \
40                                 GST_TYPE_VAAPIDOWNLOAD, \
41                                 GstVaapiDownload))
42
43 #define GST_VAAPIDOWNLOAD_CLASS(klass)                  \
44     (G_TYPE_CHECK_CLASS_CAST((klass),                   \
45                              GST_TYPE_VAAPIDOWNLOAD,    \
46                              GstVaapiDownloadClass))
47
48 #define GST_IS_VAAPIDOWNLOAD(obj) \
49     (G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_TYPE_VAAPIDOWNLOAD))
50
51 #define GST_IS_VAAPIDOWNLOAD_CLASS(klass) \
52     (G_TYPE_CHECK_CLASS_TYPE((klass), GST_TYPE_VAAPIDOWNLOAD))
53
54 #define GST_VAAPIDOWNLOAD_GET_CLASS(obj)                \
55     (G_TYPE_INSTANCE_GET_CLASS((obj),                   \
56                                GST_TYPE_VAAPIDOWNLOAD,  \
57                                GstVaapiDownloadClass))
58
59 typedef struct _GstVaapiDownload                GstVaapiDownload;
60 typedef struct _GstVaapiDownloadClass           GstVaapiDownloadClass;
61
62 GType
63 gst_vaapidownload_get_type(void) G_GNUC_CONST;
64
65 G_END_DECLS
66
67 #endif /* GST_VAAPIDOWNLOAD_H */