message: Handle the Redirect message in Message::view()

This commit is contained in:
Sebastian Dröge 2022-01-18 16:18:39 +02:00
parent 656e815b23
commit 50c6f48728

View file

@ -115,6 +115,8 @@ impl MessageRef {
ffi::GST_MESSAGE_DEVICE_ADDED => MessageView::DeviceAdded(DeviceAdded(self)),
ffi::GST_MESSAGE_DEVICE_REMOVED => MessageView::DeviceRemoved(DeviceRemoved(self)),
#[cfg(any(feature = "v1_10", feature = "dox"))]
ffi::GST_MESSAGE_REDIRECT => MessageView::Redirect(Redirect(self)),
#[cfg(any(feature = "v1_10", feature = "dox"))]
ffi::GST_MESSAGE_PROPERTY_NOTIFY => MessageView::PropertyNotify(PropertyNotify(self)),
#[cfg(any(feature = "v1_10", feature = "dox"))]
ffi::GST_MESSAGE_STREAM_COLLECTION => {