]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/gst-plugin-ducati.git/blob - src/gstducatimpeg4dec.h
fix compile error with latest gst headers
[glsdk/gst-plugin-ducati.git] / src / gstducatimpeg4dec.h
1 /*
2  * GStreamer
3  * Copyright (c) 2010, Texas Instruments Incorporated
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation
8  * version 2.1 of the License.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
18  */
20 #ifndef __GST_DUCATIMPEG4DEC_H__
21 #define __GST_DUCATIMPEG4DEC_H__
23 #include "gstducatividdec.h"
25 #include <ti/sdo/codecs/mpeg4dec/impeg4vdec.h>
28 G_BEGIN_DECLS
30 #define GST_TYPE_DUCATIMPEG4DEC              (gst_ducati_mpeg4dec_get_type())
31 #define GST_DUCATIMPEG4DEC(obj)              (G_TYPE_CHECK_INSTANCE_CAST((obj), GST_TYPE_DUCATIMPEG4DEC, GstDucatiMpeg4Dec))
32 #define GST_DUCATIMPEG4DEC_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST((klass), GST_TYPE_DUCATIMPEG4DEC, GstDucatiMpeg4DecClass))
33 #define GST_IS_DUCATIMPEG4DEC(obj)           (G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_TYPE_DUCATIMPEG4DEC))
34 #define GST_IS_DUCATIMPEG4DEC_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE((klass), GST_TYPE_DUCATIMPEG4DEC))
36 typedef struct _GstDucatiMpeg4Dec      GstDucatiMpeg4Dec;
37 typedef struct _GstDucatiMpeg4DecClass GstDucatiMpeg4DecClass;
39 struct _GstDucatiMpeg4Dec
40 {
41   GstDucatiVidDec parent;
42 };
44 struct _GstDucatiMpeg4DecClass
45 {
46   GstDucatiVidDecClass parent_class;
47 };
49 GType gst_ducati_mpeg4dec_get_type (void);
51 G_END_DECLS
53 #endif /* __GST_DUCATIMPEG4DEC_H__ */