mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +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,
|
ges_track_parse_launch_effect_get_property (GObject * object,
|
||||||
guint property_id, GValue * value, GParamSpec * pspec)
|
guint property_id, GValue * value, GParamSpec * pspec)
|
||||||
{
|
{
|
||||||
|
GESTrackParseLaunchEffectPrivate *priv =
|
||||||
|
GES_TRACK_PARSE_LAUNCH_EFFECT (object)->priv;
|
||||||
|
|
||||||
switch (property_id) {
|
switch (property_id) {
|
||||||
|
case PROP_BIN_DESCRIPTION:
|
||||||
|
g_value_set_string (value, priv->bin_description);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue