mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
0ec400890c
Original commit message from CVS: initial checkin
18 lines
318 B
C
18 lines
318 B
C
#ifndef __LOOPER_H__
|
|
#define __LOOPER_H__
|
|
|
|
#include "object.h"
|
|
|
|
#define LOOPER(l) ((looper *)(l))
|
|
|
|
typedef struct _looper looper;
|
|
struct _looper {
|
|
object object;
|
|
|
|
int source;
|
|
};
|
|
|
|
void looper_init(looper *l,int source);
|
|
looper *looper_create(char *name,int source,cothread_context *ctx);
|
|
|
|
#endif /* __LOOPER_H__ */
|