mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
effects: implement the TrackParseLaunch get_property method properly
This commit is contained in:
parent
b0810ff5de
commit
369efb0822
1 changed files with 6 additions and 0 deletions
|
@ -53,7 +53,13 @@ static void
|
|||
ges_track_parse_launch_effect_get_property (GObject * object,
|
||||
guint property_id, GValue * value, GParamSpec * pspec)
|
||||
{
|
||||
GESTrackParseLaunchEffectPrivate *priv =
|
||||
GES_TRACK_PARSE_LAUNCH_EFFECT (object)->priv;
|
||||
|
||||
switch (property_id) {
|
||||
case PROP_BIN_DESCRIPTION:
|
||||
g_value_set_string (value, priv->bin_description);
|
||||
break;
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue