1
/*
2
 * Copyright (C) 2009-2010 Felipe Contreras
3
 *
4
 * Author: Felipe Contreras <felipe.contreras@gmail.com>
5
 *
6
 * This file may be used under the terms of the GNU Lesser General Public
7
 * License version 2.1, a copy of which is found in LICENSE included in the
8
 * packaging of this file.
9
 */
10
11
#ifndef GST_DSP_MP4VENC_H
12
#define GST_DSP_MP4VENC_H
13
14
#include <gst/gst.h>
15
16
G_BEGIN_DECLS
17
18
#define GST_DSP_MP4VENC(obj) (GstDspMp4VEnc *)(obj)
19
#define GST_DSP_MP4VENC_TYPE (gst_dsp_mp4venc_get_type())
20
#define GST_DSP_MP4VENC_CLASS(obj) (GstDspMp4VEncClass *)(obj)
21
22
typedef struct _GstDspMp4VEnc GstDspMp4VEnc;
23
typedef struct _GstDspMp4VEncClass GstDspMp4VEncClass;
24
25
#include "gstdspvenc.h"
26
27
struct _GstDspMp4VEnc {
28
	GstDspVEnc element;
29
};
30
31
struct _GstDspMp4VEncClass {
32
	GstDspVEncClass parent_class;
33
};
34
35
GType gst_dsp_mp4venc_get_type(void);
36
37
G_END_DECLS
38
39
#endif /* GST_DSP_MP4VENC_H */