mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
header for mixer.c, containing input_pipe_t
Original commit message from CVS: header for mixer.c, containing input_pipe_t
This commit is contained in:
parent
2d0a7dfad1
commit
64f5e810a1
2 changed files with 26 additions and 0 deletions
13
examples/mixer/mixer.h
Normal file
13
examples/mixer/mixer.h
Normal file
|
@ -0,0 +1,13 @@
|
|||
/*
|
||||
* mixer.h header file
|
||||
* thomas@apestaart.org
|
||||
*/
|
||||
|
||||
typedef struct
|
||||
{
|
||||
GstElement *pipe;
|
||||
|
||||
GstElement *disksrc;
|
||||
GstElement *decoder;
|
||||
GstElement *volenv;
|
||||
} input_pipe_t;
|
13
tests/old/examples/mixer/mixer.h
Normal file
13
tests/old/examples/mixer/mixer.h
Normal file
|
@ -0,0 +1,13 @@
|
|||
/*
|
||||
* mixer.h header file
|
||||
* thomas@apestaart.org
|
||||
*/
|
||||
|
||||
typedef struct
|
||||
{
|
||||
GstElement *pipe;
|
||||
|
||||
GstElement *disksrc;
|
||||
GstElement *decoder;
|
||||
GstElement *volenv;
|
||||
} input_pipe_t;
|
Loading…
Reference in a new issue