mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
dvbsuboverlay: The enable property is a boolean and not an integer
This commit is contained in:
parent
2561bb8fa7
commit
b191fb2b05
1 changed files with 1 additions and 1 deletions
|
@ -313,7 +313,7 @@ gst_dvbsub_overlay_get_property (GObject * object, guint prop_id,
|
|||
|
||||
switch (prop_id) {
|
||||
case PROP_ENABLE:
|
||||
g_value_set_int (value, g_atomic_int_get (&overlay->enable));
|
||||
g_value_set_boolean (value, g_atomic_int_get (&overlay->enable));
|
||||
break;
|
||||
case PROP_MAX_PAGE_TIMEOUT:
|
||||
g_value_set_int (value, g_atomic_int_get (&overlay->max_page_timeout));
|
||||
|
|
Loading…
Reference in a new issue