2005-07-16 Wim Taymans <wim@fluendo.com>
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
+ (gst_base_sink_do_sync):
+ Fix compile error.
+
+2005-07-16 Wim Taymans <wim@fluendo.com>
+
+ * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_event), (gst_base_sink_get_times),
(gst_base_sink_do_sync), (gst_base_sink_change_state):
* gst/base/gstbasesink.h:
/* the discont event is needed to bring the buffer timestamps to the
* stream time */
if (!gst_event_discont_get_value (event, GST_FORMAT_TIME,
- &basesink->discont_start, &basesink->discont_stop)) {
+ (gint64 *) & basesink->discont_start,
+ (gint64 *) & basesink->discont_stop)) {
basesink->discont_start = 0;
basesink->discont_stop = 0;
}
/* the discont event is needed to bring the buffer timestamps to the
* stream time */
if (!gst_event_discont_get_value (event, GST_FORMAT_TIME,
- &basesink->discont_start, &basesink->discont_stop)) {
+ (gint64 *) & basesink->discont_start,
+ (gint64 *) & basesink->discont_stop)) {
basesink->discont_start = 0;
basesink->discont_stop = 0;
}