summaryrefslogtreecommitdiffstats
path: root/ext/kate/gstkateparse.c
diff options
context:
space:
mode:
authorDave Robillard <dave@drobilla.net>2009-08-09 00:14:27 -0400
committerDave Robillard <dave@drobilla.net>2009-08-09 00:14:27 -0400
commitdd5afbf0c6557ad89994cbfd91e4117e8503b81a (patch)
tree4f18322a717c6dbe64b8b38194e302b1668dcb3d /ext/kate/gstkateparse.c
parent5d9d4a7b518c42bda88c7f6c87ce7c3c01233562 (diff)
parent6115e0cb0ef3ae85397297c7e30c2e9b4a0a181e (diff)
downloadgst-plugins-bad-dd5afbf0c6557ad89994cbfd91e4117e8503b81a.tar.gz
gst-plugins-bad-dd5afbf0c6557ad89994cbfd91e4117e8503b81a.tar.bz2
gst-plugins-bad-dd5afbf0c6557ad89994cbfd91e4117e8503b81a.zip
Merge branch 'master' of git://anongit.freedesktop.org/gstreamer/gst-plugins-bad into fdo
Diffstat (limited to 'ext/kate/gstkateparse.c')
-rw-r--r--ext/kate/gstkateparse.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/ext/kate/gstkateparse.c b/ext/kate/gstkateparse.c
index 89d17514..e4a83477 100644
--- a/ext/kate/gstkateparse.c
+++ b/ext/kate/gstkateparse.c
@@ -58,8 +58,6 @@
*
*/
-/* FIXME: post appropriate GST_ELEMENT_ERROR when returning FLOW_ERROR */
-
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
@@ -174,7 +172,8 @@ gst_kate_parse_push_headers (GstKateParse * parse)
gst_pad_get_negotiated_caps (parse->sinkpad), parse->streamheader);
if (G_UNLIKELY (!caps)) {
- GST_ERROR_OBJECT (parse, "Failed to set headers on caps");
+ GST_ELEMENT_ERROR (parse, STREAM, DECODE, (NULL),
+ ("Failed to set headers on caps"));
return GST_FLOW_ERROR;
}
@@ -182,8 +181,8 @@ gst_kate_parse_push_headers (GstKateParse * parse)
res = gst_pad_set_caps (parse->srcpad, caps);
gst_caps_unref (caps);
if (G_UNLIKELY (!res)) {
- GST_WARNING_OBJECT (parse, "Failed to set pad caps");
- return GST_FLOW_ERROR;
+ GST_WARNING_OBJECT (parse->srcpad, "Failed to set caps on source pad");
+ return GST_FLOW_NOT_NEGOTIATED;
}
headers = parse->streamheader;
@@ -243,7 +242,7 @@ static GstFlowReturn
gst_kate_parse_push_buffer (GstKateParse * parse, GstBuffer * buf,
gint64 granulepos)
{
- GST_LOG_OBJECT (parse, "granulepos %16llx", granulepos);
+ GST_LOG_OBJECT (parse, "granulepos %16" G_GINT64_MODIFIER "x", granulepos);
if (granulepos < 0) {
/* packets coming not from Ogg won't have a granpos in the offset end,
so we have to synthesize one here - only problem is we don't know
@@ -331,7 +330,7 @@ gst_kate_parse_queue_buffer (GstKateParse * parse, GstBuffer * buf)
/* oggdemux stores the granule pos in the offset end */
granpos = GST_BUFFER_OFFSET_END (buf);
- GST_LOG_OBJECT (parse, "granpos %16llx", granpos);
+ GST_LOG_OBJECT (parse, "granpos %16" G_GINT64_MODIFIER "x", granpos);
g_queue_push_tail (parse->buffer_queue, buf);
#if 1
@@ -343,7 +342,8 @@ gst_kate_parse_queue_buffer (GstKateParse * parse, GstBuffer * buf)
if (granpos >= 0) {
ret = gst_kate_parse_drain_queue (parse, granpos);
} else {
- GST_WARNING_OBJECT (parse, "granulepos < 0 (%lld)", granpos);
+ GST_ELEMENT_ERROR (parse, STREAM, DECODE, (NULL),
+ ("Bad granulepos %" G_GINT64_FORMAT, granpos));
ret = GST_FLOW_ERROR;
}
#endif