mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 21:31:27 +00:00
7c5e80c383
Original commit message from CVS: changed mixer to work by autoplugging the input channels (not very useful yet, since the input buffers to volenv have different sizes)
12 lines
170 B
C
12 lines
170 B
C
/*
|
|
* mixer.h header file
|
|
* thomas@apestaart.org
|
|
*/
|
|
|
|
typedef struct
|
|
{
|
|
GstElement *pipe, *disksrc, *volenv;
|
|
|
|
char *location;
|
|
int channel_id;
|
|
} input_channel_t;
|