mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
player: use correct _NONE enum
https://bugzilla.gnome.org/show_bug.cgi?id=766973
This commit is contained in:
parent
1b58bbf3ad
commit
45a832686b
1 changed files with 2 additions and 2 deletions
|
@ -3765,10 +3765,10 @@ gst_player_get_color_balance (GstPlayer * self, GstPlayerColorBalanceType type)
|
|||
GstVideoMultiviewMode
|
||||
gst_player_get_multiview_mode (GstPlayer * self)
|
||||
{
|
||||
GstVideoMultiviewMode val = GST_VIDEO_MULTIVIEW_FRAME_PACKING_NONE;
|
||||
GstVideoMultiviewMode val = GST_VIDEO_MULTIVIEW_MODE_NONE;
|
||||
|
||||
g_return_val_if_fail (GST_IS_PLAYER (self),
|
||||
GST_VIDEO_MULTIVIEW_FRAME_PACKING_NONE);
|
||||
GST_VIDEO_MULTIVIEW_MODE_NONE);
|
||||
|
||||
g_object_get (self, "video-multiview-mode", &val, NULL);
|
||||
|
||||
|
|
Loading…
Reference in a new issue