summaryrefslogtreecommitdiffstats
path: root/gst/debug/gstnavseek.h
diff options
context:
space:
mode:
Diffstat (limited to 'gst/debug/gstnavseek.h')
-rw-r--r--gst/debug/gstnavseek.h21
1 files changed, 10 insertions, 11 deletions
diff --git a/gst/debug/gstnavseek.h b/gst/debug/gstnavseek.h
index c4eb1bd1..4d124549 100644
--- a/gst/debug/gstnavseek.h
+++ b/gst/debug/gstnavseek.h
@@ -23,6 +23,7 @@
#include <gst/gst.h>
+#include <gst/base/gstbasetransform.h>
G_BEGIN_DECLS
@@ -41,20 +42,18 @@ typedef struct _GstNavSeek GstNavSeek;
typedef struct _GstNavSeekClass GstNavSeekClass;
struct _GstNavSeek {
- GstElement element;
- GstPad *sinkpad;
- GstPad *srcpad;
-
- gdouble seek_offset;
- gboolean loop;
- gboolean grab_seg_start;
- gboolean grab_seg_end;
- GstClockTime segment_start;
- GstClockTime segment_end;
+ GstBaseTransform basetransform;
+
+ gdouble seek_offset;
+ gboolean loop;
+ gboolean grab_seg_start;
+ gboolean grab_seg_end;
+ GstClockTime segment_start;
+ GstClockTime segment_end;
};
struct _GstNavSeekClass {
- GstElementClass parent_class;
+ GstBaseTransformClass parent_class;
};
G_END_DECLS