mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
b997098405
Original commit message from CVS: added example program to show how cutter plugin works
14 lines
202 B
C
14 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;
|