[rygel] core: Add note for removal of bug#622089 workaround



commit 7cd51dc588cfca1b83ffd2ff386f517191ae067f
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date:   Sat Jun 19 18:54:23 2010 +0300

    core: Add note for removal of bug#622089 workaround

 src/rygel/rygel-live-response.vala        |    2 ++
 src/rygel/rygel-mp2ts-transcoder-bin.vala |    2 ++
 src/rygel/rygel-wmv-transcoder-bin.vala   |    2 ++
 3 files changed, 6 insertions(+), 0 deletions(-)
---
diff --git a/src/rygel/rygel-live-response.vala b/src/rygel/rygel-live-response.vala
index 4c0181d..cfb8832 100644
--- a/src/rygel/rygel-live-response.vala
+++ b/src/rygel/rygel-live-response.vala
@@ -93,6 +93,8 @@ internal class Rygel.LiveResponse : Rygel.HTTPResponse {
         }
 
         sink.signal_handoffs = true;
+        // FIXME: Use 'connect' syntax & remove the ugly annotation on the
+        //        callback once bug#622089 is fixed.
         Signal.connect_object (sink,
                                "handoff",
                                (Callback) this.on_new_buffer,
diff --git a/src/rygel/rygel-mp2ts-transcoder-bin.vala b/src/rygel/rygel-mp2ts-transcoder-bin.vala
index f6548e4..81a530b 100644
--- a/src/rygel/rygel-mp2ts-transcoder-bin.vala
+++ b/src/rygel/rygel-mp2ts-transcoder-bin.vala
@@ -63,6 +63,8 @@ internal class Rygel.MP2TSTranscoderBin : Gst.Bin {
         this.add_pad (ghost);
 
         decodebin.pad_added.connect (this.decodebin_pad_added);
+        // FIXME: Use 'connect' syntax & remove the ugly annotation on the
+        //        callback once bug#622089 is fixed.
         Signal.connect_object (decodebin,
                                "autoplug-continue",
                                (Callback) this.autoplug_continue,
diff --git a/src/rygel/rygel-wmv-transcoder-bin.vala b/src/rygel/rygel-wmv-transcoder-bin.vala
index 75cab01..d66e78e 100644
--- a/src/rygel/rygel-wmv-transcoder-bin.vala
+++ b/src/rygel/rygel-wmv-transcoder-bin.vala
@@ -61,6 +61,8 @@ internal class Rygel.WMVTranscoderBin : Gst.Bin {
         this.add_pad (ghost);
 
         decodebin.pad_added.connect (this.decodebin_pad_added);
+        // FIXME: Use 'connect' syntax & remove the ugly annotation on the
+        //        callback once bug#622089 is fixed.
         Signal.connect_object (decodebin,
                                "autoplug-continue",
                                (Callback) this.autoplug_continue,



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]