summaryrefslogtreecommitdiff
path: root/gst/ivfparse/gstivfparse.h
diff options
context:
space:
mode:
authorGwenole Beauchesne <gwenole.beauchesne@intel.com>2014-03-04 15:46:58 +0100
committerGwenole Beauchesne <gwenole.beauchesne@intel.com>2014-04-18 18:31:15 +0200
commit3d0ce67fcd886cf6e03f4f123d7da64491b96a8d (patch)
tree137d1e969fbdd98ccd22620328db266c740b57f5 /gst/ivfparse/gstivfparse.h
parentbf6959000f2f785c9446f32bf2bf8eb619633760 (diff)
downloadgstreamer-plugins-bad-3d0ce67fcd886cf6e03f4f123d7da64491b96a8d.tar.gz
ivfparse: port to baseparse.
https://bugzilla.gnome.org/show_bug.cgi?id=710855 Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
Diffstat (limited to 'gst/ivfparse/gstivfparse.h')
-rw-r--r--gst/ivfparse/gstivfparse.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/gst/ivfparse/gstivfparse.h b/gst/ivfparse/gstivfparse.h
index efbf58bbd..c0abc6b87 100644
--- a/gst/ivfparse/gstivfparse.h
+++ b/gst/ivfparse/gstivfparse.h
@@ -23,7 +23,7 @@
#define __GST_IVF_PARSE_H__
#include <gst/gst.h>
-#include <gst/base/gstadapter.h>
+#include <gst/base/gstbaseparse.h>
G_BEGIN_DECLS
@@ -48,11 +48,7 @@ typedef struct _GstIvfParseClass GstIvfParseClass;
struct _GstIvfParse
{
- GstElement element;
-
- GstPad *sinkpad, *srcpad;
-
- GstAdapter *adapter;
+ GstBaseParse baseparse;
GstIvfParseState state;
@@ -63,7 +59,7 @@ struct _GstIvfParse
struct _GstIvfParseClass
{
- GstElementClass parent_class;
+ GstBaseParseClass parent_class;
};
GType gst_ivf_parse_get_type (void);