gstreamer/test/cothreads/test.c
Wim Taymans 23540ccc52 Faster and modular getbits implementation.
Original commit message from CVS:
Faster and modular getbits implementation.
Fixed a bug in the audiosink that could lock up your box on bad MB.
Modified the plugins to use the new getbits functions.
2000-09-07 20:35:15 +00:00

23 lines
407 B
C

#include <stdio.h>
#include "glib.h"
#include "cothreads.h"
#include "object.h"
#include "looper.h"
cothread_context *ctx;
int main(int argc,char *argv[]) {
looper *l1,*l2;
ctx = cothread_init();
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");
while (1)
object_start(l1);
}