mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
print the name
Original commit message from CVS: print the name
This commit is contained in:
parent
02adc6b669
commit
8e0687e93d
1 changed files with 8 additions and 1 deletions
|
@ -36,6 +36,12 @@ typedef struct _GstSchedulerChain GstSchedulerChain;
|
|||
typedef struct _GstBasicScheduler GstBasicScheduler;
|
||||
typedef struct _GstBasicSchedulerClass GstBasicSchedulerClass;
|
||||
|
||||
#ifdef _COTHREADS_STANDARD
|
||||
# define _SCHEDULER_NAME "standard"
|
||||
#else
|
||||
# define _SCHEDULER_NAME "basic"
|
||||
#endif
|
||||
|
||||
struct _GstSchedulerChain {
|
||||
GstBasicScheduler *sched;
|
||||
|
||||
|
@ -1282,7 +1288,8 @@ gst_basic_scheduler_iterate (GstScheduler * sched)
|
|||
|
||||
/* all we really have to do is switch to the first child */
|
||||
/* FIXME this should be lots more intelligent about where to start */
|
||||
GST_DEBUG (GST_CAT_DATAFLOW, "starting iteration via cothreads");
|
||||
GST_DEBUG (GST_CAT_DATAFLOW, "starting iteration via cothreads using %s scheduler",
|
||||
_SCHEDULER_NAME);
|
||||
|
||||
if (chain->elements) {
|
||||
entry = NULL; /*MattH ADDED?*/
|
||||
|
|
Loading…
Reference in a new issue