summaryrefslogtreecommitdiff
path: root/gstreamer_ti_dm81xx/ti_build/gst-openmax/omx/gstomx_g729enc.h
diff options
context:
space:
mode:
Diffstat (limited to 'gstreamer_ti_dm81xx/ti_build/gst-openmax/omx/gstomx_g729enc.h')
-rw-r--r--gstreamer_ti_dm81xx/ti_build/gst-openmax/omx/gstomx_g729enc.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/gstreamer_ti_dm81xx/ti_build/gst-openmax/omx/gstomx_g729enc.h b/gstreamer_ti_dm81xx/ti_build/gst-openmax/omx/gstomx_g729enc.h
new file mode 100644
index 0000000..5e7a411
--- /dev/null
+++ b/gstreamer_ti_dm81xx/ti_build/gst-openmax/omx/gstomx_g729enc.h
@@ -0,0 +1,52 @@
+/*
+ * Copyright (C) 2007-2009 Nokia Corporation.
+ *
+ * Author: Felipe Contreras <felipe.contreras@nokia.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation
+ * version 2.1 of the License.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifndef GSTOMX_G729ENC_H
+#define GSTOMX_G729ENC_H
+
+#include <gst/gst.h>
+
+G_BEGIN_DECLS
+
+#define GST_OMX_G729ENC(obj) (GstOmxG729Enc *) (obj)
+#define GST_OMX_G729ENC_TYPE (gst_omx_g729enc_get_type ())
+
+typedef struct GstOmxG729Enc GstOmxG729Enc;
+typedef struct GstOmxG729EncClass GstOmxG729EncClass;
+
+#include "gstomx_base_filter.h"
+
+struct GstOmxG729Enc
+{
+ GstOmxBaseFilter omx_base;
+ gboolean dtx;
+};
+
+struct GstOmxG729EncClass
+{
+ GstOmxBaseFilterClass parent_class;
+};
+
+GType gst_omx_g729enc_get_type (void);
+
+G_END_DECLS
+
+#endif /* GSTOMX_G729ENC_H */