validate: Add the "ges" as implementer namespace for our action types

This commit is contained in:
Thibault Saunier 2014-09-05 23:08:41 +02:00
parent 44ef8f200b
commit de33101ac0

View file

@ -449,7 +449,7 @@ ges_validate_register_action_types (void)
gst_validate_init (); gst_validate_init ();
/* *INDENT-OFF* */ /* *INDENT-OFF* */
gst_validate_add_action_type ("edit-container", _edit_container, gst_validate_add_action_type ("edit-container", "ges", _edit_container,
(GstValidateActionParameter []) { (GstValidateActionParameter []) {
{ {
.name = "container-name", .name = "container-name",
@ -497,7 +497,7 @@ ges_validate_register_action_types (void)
"be commited, and flushed so that the edition is taken into account", "be commited, and flushed so that the edition is taken into account",
FALSE); FALSE);
gst_validate_add_action_type ("add-asset", _add_asset, gst_validate_add_action_type ("add-asset", "ges", _add_asset,
(GstValidateActionParameter []) { (GstValidateActionParameter []) {
{ {
.name = "id", .name = "id",
@ -515,7 +515,7 @@ ges_validate_register_action_types (void)
}, },
"Allows to add an asset to the current project", FALSE); "Allows to add an asset to the current project", FALSE);
gst_validate_add_action_type ("remove-asset", _remove_asset, gst_validate_add_action_type ("remove-asset", "ges", _remove_asset,
(GstValidateActionParameter []) { (GstValidateActionParameter []) {
{ {
.name = "id", .name = "id",
@ -533,7 +533,7 @@ ges_validate_register_action_types (void)
}, },
"Allows to remove an asset from the current project", FALSE); "Allows to remove an asset from the current project", FALSE);
gst_validate_add_action_type ("add-layer", _add_layer, gst_validate_add_action_type ("add-layer", "ges", _add_layer,
(GstValidateActionParameter []) { (GstValidateActionParameter []) {
{ {
.name = "priority", .name = "priority",
@ -545,7 +545,7 @@ ges_validate_register_action_types (void)
}, },
"Allows to add a layer to the current timeline", FALSE); "Allows to add a layer to the current timeline", FALSE);
gst_validate_add_action_type ("remove-layer", _remove_layer, gst_validate_add_action_type ("remove-layer", "ges", _remove_layer,
(GstValidateActionParameter []) { (GstValidateActionParameter []) {
{ {
.name = "priority", .name = "priority",
@ -557,7 +557,7 @@ ges_validate_register_action_types (void)
}, },
"Allows to remove a layer from the current timeline", FALSE); "Allows to remove a layer from the current timeline", FALSE);
gst_validate_add_action_type ("add-clip", _add_clip, gst_validate_add_action_type ("add-clip", "ges", _add_clip,
(GstValidateActionParameter []) { (GstValidateActionParameter []) {
{ {
.name = "name", .name = "name",
@ -586,7 +586,7 @@ ges_validate_register_action_types (void)
{NULL} {NULL}
}, "Allows to add a clip to a given layer", FALSE); }, "Allows to add a clip to a given layer", FALSE);
gst_validate_add_action_type ("remove-clip", _remove_clip, gst_validate_add_action_type ("remove-clip", "ges", _remove_clip,
(GstValidateActionParameter []) { (GstValidateActionParameter []) {
{ {
.name = "clip-name", .name = "clip-name",
@ -597,7 +597,7 @@ ges_validate_register_action_types (void)
{NULL} {NULL}
}, "Allows to remove a clip from a given layer", FALSE); }, "Allows to remove a clip from a given layer", FALSE);
gst_validate_add_action_type ("serialize-project", _serialize_project, gst_validate_add_action_type ("serialize-project", "ges", _serialize_project,
(GstValidateActionParameter []) { (GstValidateActionParameter []) {
{ {
.name = "uri", .name = "uri",
@ -608,7 +608,7 @@ ges_validate_register_action_types (void)
{NULL} {NULL}
}, "serializes a project", FALSE); }, "serializes a project", FALSE);
gst_validate_add_action_type ("set-child-property", _set_child_property, gst_validate_add_action_type ("set-child-property", "ges", _set_child_property,
(GstValidateActionParameter []) { (GstValidateActionParameter []) {
{ {
.name = "element-name", .name = "element-name",