diff options
author | Thibault Saunier <thibault.saunier@collabora.com> | 2013-09-28 18:09:49 +0200 |
---|---|---|
committer | Thibault Saunier <thibault.saunier@collabora.com> | 2013-09-28 18:09:49 +0200 |
commit | ca562ba8a06aab63bf411c026a60aaab05fff238 (patch) | |
tree | 9bbb8d71fc80f4c463dec10bb91e617bdd50a8f5 /ges/ges-clip.h | |
parent | 002977cd85d21400194ba8041bb48c313952d995 (diff) |
clip: Return the newly created TrackElement when adding an asset
This is a minor API change
Diffstat (limited to 'ges/ges-clip.h')
-rw-r--r-- | ges/ges-clip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ges/ges-clip.h b/ges/ges-clip.h index 26f35f5c..5bafa910 100644 --- a/ges/ges-clip.h +++ b/ges/ges-clip.h @@ -144,7 +144,7 @@ GType ges_clip_get_type (void); ****************************************************/ GESTrackType ges_clip_get_supported_formats (GESClip *clip); void ges_clip_set_supported_formats (GESClip *clip, GESTrackType supportedformats); -gboolean ges_clip_add_asset (GESClip *clip, GESAsset *asset); +GESTrackElement* ges_clip_add_asset (GESClip *clip, GESAsset *asset); GESTrackElement* ges_clip_find_track_element (GESClip *clip, GESTrack *track, GType type); |