mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 23:36:38 +00:00
jack: fix obvious wrong definition for the master flag
This commit is contained in:
parent
18e8aa48e6
commit
9212d79198
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ typedef enum {
|
|||
*/
|
||||
typedef enum {
|
||||
GST_JACK_TRANSPORT_AUTONOMOUS = 0,
|
||||
GST_JACK_TRANSPORT_MASTER = (0 << 1),
|
||||
GST_JACK_TRANSPORT_MASTER = (1 << 0),
|
||||
GST_JACK_TRANSPORT_SLAVE = (1 << 1),
|
||||
} GstJackTransport;
|
||||
|
||||
|
|
Loading…
Reference in a new issue