mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-24 15:06:38 +00:00
Original commit message from CVS: First commit of the new event stuff. I haven't tested if examples or tests work and I'm not going to bother with them until I'm sure how events/buffers are going to work. Oh, I enable -Werror where I could (see configure.ac for details)
32 lines
974 B
C
32 lines
974 B
C
#ifndef __GST_TYPES_H__
|
|
#define __GST_TYPES_H__
|
|
|
|
typedef struct _GstObject GstObject;
|
|
typedef struct _GstObjectClass GstObjectClass;
|
|
typedef struct _GstPad GstPad;
|
|
typedef struct _GstPadClass GstPadClass;
|
|
typedef struct _GstPadTemplate GstPadTemplate;
|
|
typedef struct _GstPadTemplateClass GstPadTemplateClass;
|
|
typedef struct _GstElement GstElement;
|
|
typedef struct _GstElementClass GstElementClass;
|
|
typedef struct _GstBin GstBin;
|
|
typedef struct _GstBinClass GstBinClass;
|
|
typedef struct _GstScheduler GstScheduler;
|
|
typedef struct _GstSchedulerClass GstSchedulerClass;
|
|
|
|
typedef enum {
|
|
GST_STATE_VOID_PENDING = 0,
|
|
GST_STATE_NULL = (1 << 0),
|
|
GST_STATE_READY = (1 << 1),
|
|
GST_STATE_PAUSED = (1 << 2),
|
|
GST_STATE_PLAYING = (1 << 3),
|
|
} GstElementState;
|
|
|
|
typedef enum {
|
|
GST_STATE_FAILURE = 0,
|
|
GST_STATE_SUCCESS = 1,
|
|
GST_STATE_ASYNC = 2,
|
|
} GstElementStateReturn;
|
|
|
|
|
|
#endif
|