mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 20:01:35 +00:00
18 lines
369 B
C
18 lines
369 B
C
|
#include <stdio.h>
|
||
|
|
||
|
#include "cothreads.h"
|
||
|
#include "object.h"
|
||
|
#include "looper.h"
|
||
|
|
||
|
int main(int argc,char *argv[]) {
|
||
|
cothread_context *ctx = cothread_init();
|
||
|
looper *l1,*l2;
|
||
|
|
||
|
l1 = looper_create("looperone",1,ctx);
|
||
|
l2 = looper_create("loopertwo",0,ctx);
|
||
|
object_setpeer(OBJECT(l1),OBJECT(l2));
|
||
|
|
||
|
fprintf(stderr,"about to start l1\n\n");
|
||
|
object_start(l1);
|
||
|
}
|