mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
libs/gst/base/gstbasesrc.h: Note in the docs that the ::newsegment vfunc is not actually used by
Original commit message from CVS: * libs/gst/base/gstbasesrc.h: Note in the docs that the ::newsegment vfunc is not actually used by GstBaseSrc.
This commit is contained in:
parent
6939f83e75
commit
8b97e07338
3 changed files with 9 additions and 3 deletions
|
@ -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:
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit ef97fb3278d98a1fdb32e5c6b2a7467116ffc160
|
||||
Subproject commit e9ea99f6e89d7e1af3a0a859bfeb0ed6ecf2e3a9
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue