Add -Wmissing-declarations -Wmissing-prototypes to warning flags
[platform/upstream/gstreamer.git] / gst / videorate / gstvideorate.h
index 19007d9..4d6c061 100644 (file)
@@ -55,13 +55,18 @@ struct _GstVideoRate
   guint64 next_ts;              /* Timestamp of next buffer to output */
   GstBuffer *prevbuf;
   guint64 prev_ts;              /* Previous buffer timestamp */
-  guint64 in, out, dup, drop;
+  guint64 segment_out;          /* in-segment counting */
+  gboolean discont;
+  guint64 last_ts;              /* Timestamp of last input buffer */
 
   /* segment handling */
   GstSegment segment;
 
+  /* properties */
+  guint64 in, out, dup, drop;
   gboolean silent;
   gdouble new_pref;
+  gboolean skip_to_first;
 };
 
 struct _GstVideoRateClass
@@ -69,6 +74,8 @@ struct _GstVideoRateClass
   GstElementClass parent_class;
 };
 
+GType gst_video_rate_get_type (void);
+
 G_END_DECLS
 
 #endif /* __GST_VIDEO_RATE_H__ */