mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
082a40ded1
Original commit message from CVS: for i in `find . -name *.[ch]`; do perl -n -i -p -e 's/disksrc/filesrc/g;' $i; done
12 lines
170 B
C
12 lines
170 B
C
/*
|
|
* mixer.h header file
|
|
* thomas@apestaart.org
|
|
*/
|
|
|
|
typedef struct
|
|
{
|
|
GstElement *pipe, *filesrc, *volenv;
|
|
|
|
char *location;
|
|
int channel_id;
|
|
} input_channel_t;
|