mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 18:20:44 +00:00
identity: Fix the ts-offset property getter
Previous code was a copy/paste from the property setter function.
This commit is contained in:
parent
99aeb91cc0
commit
66e1ee5137
1 changed files with 1 additions and 1 deletions
|
@ -852,7 +852,7 @@ gst_identity_get_property (GObject * object, guint prop_id, GValue * value,
|
|||
g_value_set_boolean (value, identity->sync);
|
||||
break;
|
||||
case PROP_TS_OFFSET:
|
||||
identity->ts_offset = g_value_get_int64 (value);
|
||||
g_value_set_int64 (value, identity->ts_offset);
|
||||
break;
|
||||
case PROP_CHECK_IMPERFECT_TIMESTAMP:
|
||||
g_value_set_boolean (value, identity->check_imperfect_timestamp);
|
||||
|
|
Loading…
Reference in a new issue