From 9410acd1fad2c01cdb0291a82345c7b58dc74ae2 Mon Sep 17 00:00:00 2001 From: Edgard Lima Date: Fri, 3 Feb 2006 20:05:20 +0000 Subject: Fixed a bug add in last commit, where no event is send. Thanks Tim to show me. Original commit message from CVS: Fixed a bug add in last commit, where no event is send. Thanks Tim to show me. --- ext/flac/gstflacenc.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'ext') 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); -- cgit