libs/gst/base/gstbasesrc.h: Note in the docs that the ::newsegment vfunc is not actua...
authorTim-Philipp Müller <tim@centricular.net>
Sat, 29 Jul 2006 13:45:09 +0000 (13:45 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Sat, 29 Jul 2006 13:45:09 +0000 (13:45 +0000)
Original commit message from CVS:
* libs/gst/base/gstbasesrc.h:
Note in the docs that the ::newsegment vfunc is not actually used by
GstBaseSrc.

ChangeLog
common
libs/gst/base/gstbasesrc.h

index d9b0bb2..e80fb73 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-07-29  Tim-Philipp Müller  <tim at centricular dot net>
+
+       * libs/gst/base/gstbasesrc.h:
+         Note in the docs that the ::newsegment vfunc is not actually used by
+         GstBaseSrc.
+
 2006-07-28  Wim Taymans  <wim@fluendo.com>
 
        * libs/gst/base/gstcollectpads.c:
diff --git a/common b/common
index ef97fb3..e9ea99f 160000 (submodule)
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit ef97fb3278d98a1fdb32e5c6b2a7467116ffc160
+Subproject commit e9ea99f6e89d7e1af3a0a859bfeb0ed6ecf2e3a9
index d082ae8..e043aaa 100644 (file)
@@ -121,7 +121,7 @@ struct _GstBaseSrc {
  * @get_caps: Called to get the caps to report
  * @set_caps: Notify subclass of changed output caps
  * @negotiate: Negotiated the caps with the peer.
- * @newsegment: Generate and send a new_segment event.
+ * @newsegment: Generate and send a new_segment event (UNUSED)
  * @start: Start processing. Subclasses should open resources and prepare
  *    to produce data.
  * @stop: Stop processing. Subclasses should use this to close resources.
@@ -157,7 +157,7 @@ struct _GstBaseSrcClass {
   /* decide on caps */
   gboolean      (*negotiate)    (GstBaseSrc *src);
 
-  /* generate and send a newsegment */
+  /* generate and send a newsegment (UNUSED) */
   gboolean      (*newsegment)   (GstBaseSrc *src);
 
   /* start and stop processing, ideal for opening/closing the resource */