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.
This commit is contained in:
Edgard Lima 2006-02-03 20:05:20 +00:00
parent 789a7b20ac
commit 9410acd1fa
2 changed files with 13 additions and 4 deletions

View file

@ -1,3 +1,9 @@
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:

View file

@ -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);