From 0db4cb524f09149c85f6ab826fa1646a3c7c40d7 Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Wed, 9 Apr 2008 12:02:55 +0000 Subject: gst/matroska/: Fix the Forte build by making function declaration signatures match the implementations. Original commit message from CVS: * gst/matroska/ebml-read.c: (gst_ebml_read_seek): * gst/matroska/matroska-demux.c: (gst_matroska_demux_handle_seek_event), (gst_matroska_demux_parse_contents_seekentry), (gst_matroska_demux_loop): Fix the Forte build by making function declaration signatures match the implementations. --- gst/matroska/ebml-read.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gst/matroska/ebml-read.c') diff --git a/gst/matroska/ebml-read.c b/gst/matroska/ebml-read.c index 5cff520c..85f0e50d 100644 --- a/gst/matroska/ebml-read.c +++ b/gst/matroska/ebml-read.c @@ -39,9 +39,9 @@ static GstStateChangeReturn gst_ebml_read_change_state (GstElement * element, GstStateChange transition); /* convenience functions */ -static gboolean gst_ebml_read_peek_bytes (GstEbmlRead * ebml, guint size, +static GstFlowReturn gst_ebml_read_peek_bytes (GstEbmlRead * ebml, guint size, GstBuffer ** p_buf, guint8 ** bytes); -static gboolean gst_ebml_read_pull_bytes (GstEbmlRead * ebml, guint size, +static GstFlowReturn gst_ebml_read_pull_bytes (GstEbmlRead * ebml, guint size, GstBuffer ** p_buf, guint8 ** bytes); @@ -447,15 +447,15 @@ gst_ebml_read_get_length (GstEbmlRead * ebml) * Seek to a given offset. */ -gboolean +GstFlowReturn gst_ebml_read_seek (GstEbmlRead * ebml, guint64 offset) { if (offset >= gst_ebml_read_get_length (ebml)) - return FALSE; + return GST_FLOW_UNEXPECTED; ebml->offset = offset; - return TRUE; + return GST_FLOW_OK; } /* -- cgit