mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 03:01:03 +00:00
message: fix up enum value for GST_MESSAGE_DEVICE_CHANGED
This was added in 1.16 and accidentally duplicated the value of the existing GST_MESSAGE_REDIRECT. As the only known user of this message is GStreamer core itself, and it is quite an obscure message, it seems best to just fix up the enum value even if that technically breaks API. Fixes #418
This commit is contained in:
parent
3fd657086f
commit
8841c3a22f
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ typedef enum
|
|||
GST_MESSAGE_STREAM_COLLECTION = GST_MESSAGE_EXTENDED + 4,
|
||||
GST_MESSAGE_STREAMS_SELECTED = GST_MESSAGE_EXTENDED + 5,
|
||||
GST_MESSAGE_REDIRECT = GST_MESSAGE_EXTENDED + 6,
|
||||
GST_MESSAGE_DEVICE_CHANGED = GST_MESSAGE_EXTENDED + 6,
|
||||
GST_MESSAGE_DEVICE_CHANGED = GST_MESSAGE_EXTENDED + 7,
|
||||
GST_MESSAGE_ANY = (gint) (0xffffffff)
|
||||
} GstMessageType;
|
||||
|
||||
|
|
Loading…
Reference in a new issue