summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--ext/flac/gstflacenc.c11
2 files changed, 13 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 0ef020dc..799c60d0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,12 @@
2006-02-03 Edgard Lima <edgard.lima@indt.org.br>
* ext/flac/gstflacenc.c:
+ Fixed a bug add in last commit, where no event is send. Thanks Tim to
+ show me.
+
+2006-02-03 Edgard Lima <edgard.lima@indt.org.br>
+
+ * ext/flac/gstflacenc.c:
* gst/matroska/ebml-read.c:
Just make it compile with --disable-gst-debug.
diff --git a/ext/flac/gstflacenc.c b/ext/flac/gstflacenc.c
index d6c1e8de..0eb1ca49 100644
--- a/ext/flac/gstflacenc.c
+++ b/ext/flac/gstflacenc.c
@@ -509,14 +509,17 @@ gst_flac_enc_seek_callback (const FLAC__SeekableStreamEncoder * encoder,
absolute_byte_offset, GST_BUFFER_OFFSET_NONE, 0);
if ((peerpad = gst_pad_get_peer (flacenc->srcpad))) {
-#ifndef GST_DISABLE_GST_DEBUG
gboolean ret = gst_pad_send_event (peerpad, event);
-#endif
gst_object_unref (peerpad);
- GST_DEBUG ("Seek to %" G_GUINT64_FORMAT " %s", absolute_byte_offset,
- (ret) ? "succeeded" : "failed");
+ if (ret) {
+ GST_DEBUG ("Seek to %" G_GUINT64_FORMAT " %s", absolute_byte_offset,
+ "succeeded");
+ } else {
+ GST_DEBUG ("Seek to %" G_GUINT64_FORMAT " %s", absolute_byte_offset,
+ "failed");
+ }
} else {
GST_DEBUG ("Seek to %" G_GUINT64_FORMAT " failed (no peer pad)",
absolute_byte_offset);