mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
doc fixes s/gst_clock_activate/gst_clock_set_active/g
Original commit message from CVS: * doc fixes * s/gst_clock_activate/gst_clock_set_active/g
This commit is contained in:
parent
2ed7bf4e67
commit
cb245cd3e0
1 changed files with 5 additions and 5 deletions
|
@ -254,12 +254,12 @@ gst_scheduler_state_transition (GstScheduler *sched, GstElement *element, gint t
|
|||
{
|
||||
gst_scheduler_set_clock (sched, sched->current_clock);
|
||||
if (sched->current_clock)
|
||||
gst_clock_activate (sched->current_clock, TRUE);
|
||||
gst_clock_set_active (sched->current_clock, TRUE);
|
||||
break;
|
||||
}
|
||||
case GST_STATE_PLAYING_TO_PAUSED:
|
||||
if (sched->current_clock)
|
||||
gst_clock_activate (sched->current_clock, FALSE);
|
||||
gst_clock_set_active (sched->current_clock, FALSE);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -272,10 +272,10 @@ gst_scheduler_state_transition (GstScheduler *sched, GstElement *element, gint t
|
|||
|
||||
/**
|
||||
* gst_scheduler_add_scheduler:
|
||||
* @sched: the schedulerr
|
||||
* @sched2: the scheduler to add
|
||||
* @sched: a #GstScheduler to add to
|
||||
* @sched2: the #GstScheduler to add
|
||||
*
|
||||
a Notifies the scheduler that it has to monitor this scheduler.
|
||||
* Notifies the scheduler that it has to monitor this scheduler.
|
||||
*/
|
||||
void
|
||||
gst_scheduler_add_scheduler (GstScheduler *sched, GstScheduler *sched2)
|
||||
|
|
Loading…
Reference in a new issue