09a049516f689e1db0b1d1af9a00107c63bfa93e
[profile/ivi/gstreamer-vaapi.git] / gst / vaapiencode / gstvaapimpeg4encode.h
1 #ifndef GST_VAAPI_MPEG4_ENCODE_H
2 #define GST_VAAPI_MPEG4_ENCODE_H
3
4 #include <gst/gst.h>
5 #include "gstvaapiencode.h"
6
7 G_BEGIN_DECLS
8
9 #define GST_TYPE_MPEG4ENCODE             (gst_mpeg4encode_get_type())
10 #define GST_IS_MPEG4ENCODE(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_MPEG4ENCODE))
11 #define GST_IS_MPEG4ENCODE_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_MPEG4ENCODE))
12 #define GST_MPEG4ENCODE_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_MPEG4ENCODE, GstMPEG4EncodeClass))
13 #define GST_MPEG4ENCODE(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_MPEG4ENCODE, GstMPEG4Encode))
14 #define GST_MPEG4ENCODE_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_MPEG4ENCODE, GstMPEG4EncodeClass))
15
16
17 typedef struct _GstMPEG4Encode        GstMPEG4Encode;
18 typedef struct _GstMPEG4EncodeClass   GstMPEG4EncodeClass;
19
20 struct _GstMPEG4Encode {
21   GstVaapiEncode parent;
22 };
23
24 struct _GstMPEG4EncodeClass {
25     GstVaapiEncodeClass     parent_class;
26 };
27
28 GType gst_mpeg4encode_get_type(void);
29
30
31 G_END_DECLS
32
33 #endif /* GST_VAAPI_MPEG4_ENCODE_H */
34