mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
15 lines
202 B
C
15 lines
202 B
C
|
/*
|
||
|
* cutter.h header file
|
||
|
* thomas@apestaart.org
|
||
|
*/
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
GstElement *pipe;
|
||
|
GstElement *disksink;
|
||
|
GstElement *audiosink;
|
||
|
|
||
|
char *location;
|
||
|
int channel_id;
|
||
|
} output_channel_t;
|