platform/upstream/gst-editing-services.git
11 years agobase-xml-formatter: s/ducation/duration/
Thibault Saunier [Tue, 2 Jul 2013 17:43:49 +0000 (13:43 -0400)]
base-xml-formatter: s/ducation/duration/

11 years agocontainer: ges_container_ungroup return a transfer full list
Thibault Saunier [Fri, 28 Jun 2013 16:56:17 +0000 (12:56 -0400)]
container: ges_container_ungroup return a transfer full list

11 years agoges: Move ges_clip_edit to GESContainer
Thibault Saunier [Fri, 28 Jun 2013 15:23:27 +0000 (11:23 -0400)]
ges: Move ges_clip_edit to GESContainer

This exact same method will be needed in GESGroup, so we should have the method
in the common parent class.

API:
    - ges_clip_edit
    + ges_container_edit
    + GESContainer->edit vmethod

11 years agocontainer: Update offsets in GESTimelineElement vmethod implementations
Thibault Saunier [Wed, 26 Jun 2013 23:55:37 +0000 (19:55 -0400)]
container: Update offsets in GESTimelineElement vmethod implementations

So subclasses just have to link up to resync offsets

11 years agodocs: Misc documentation fixes
Thibault Saunier [Wed, 26 Jun 2013 21:08:16 +0000 (17:08 -0400)]
docs: Misc documentation fixes

11 years agoclip: Never try to set the start after the end of an element when trimming
Thibault Saunier [Tue, 25 Jun 2013 22:37:48 +0000 (18:37 -0400)]
clip: Never try to set the start after the end of an element when trimming

11 years agointernal: Add a macro to make it easier to get the end of a TimelineElement
Thibault Saunier [Tue, 25 Jun 2013 22:37:17 +0000 (18:37 -0400)]
internal: Add a macro to make it easier to get the end of a TimelineElement

11 years agotrack: Update gaps only when commiting
Thibault Saunier [Tue, 25 Jun 2013 22:36:24 +0000 (18:36 -0400)]
track: Update gaps only when commiting

We were still updating them at useless moments, do it only when absolutely needed.

11 years agocontainer: Fix the way we check priority of subclasses when grouping objects
Thibault Saunier [Tue, 25 Jun 2013 22:34:44 +0000 (18:34 -0400)]
container: Fix the way we check priority of subclasses when grouping objects

The resulting list was from lower to higher, we need the contrary

11 years agoges: Move GESTimelineElemt vmethod implementation from container to clip
Thibault Saunier [Wed, 26 Jun 2013 20:54:02 +0000 (16:54 -0400)]
ges: Move GESTimelineElemt vmethod implementation from container to clip

This is where they belong to has they are specific to that
implementation of the baseclass

11 years agocontainer: Make initiated_move a read only protected member
Thibault Saunier [Tue, 25 Jun 2013 22:32:49 +0000 (18:32 -0400)]
container: Make initiated_move a read only protected member

It is a interesting information for subclasses.
Conflicts:
ges/ges-container.c

11 years agointernal: Fix typo in the header
Thibault Saunier [Tue, 9 Jul 2013 14:57:51 +0000 (10:57 -0400)]
internal: Fix typo in the header

ges_base_xml_formatter_add_control_bindingi was meant to be
ges_base_xml_formatter_add_control_binding

11 years agotrack-element: Remove duration_changed virtual method.
Mathieu Duponchelle [Mon, 1 Jul 2013 21:33:01 +0000 (23:33 +0200)]
track-element: Remove duration_changed virtual method.

We use notifies for the properties.
+ Use notifies in audio-transition and video-transition

11 years agoformatters: Save and load bindings applied to sources.
Mathieu Duponchelle [Mon, 8 Jul 2013 22:31:30 +0000 (00:31 +0200)]
formatters: Save and load bindings applied to sources.

11 years agoges-launch: make it portable to all locales.
Alban Browaeys [Mon, 17 Jun 2013 05:55:54 +0000 (07:55 +0200)]
ges-launch: make it portable to all locales.

Call setlocale (LC_ALL, "") as per setlocale man page
to make ges-launch portable to all locales (instead of default
"C" one).

Fixes g_option_context_parse on:
$ ges-launch-1.0 --verbose -r -q /home/prahal/Vidéos/Test3.xges -o
file:///home/prahal/Test3.mpeg
Error initializing: Invalid byte sequence in conversion input

The accentuated character in "Vidéos" the french xdg user directory
for "Videos" is what is choked upon.

https://bugzilla.gnome.org/show_bug.cgi?id=702425

11 years agotimelinepipeline: fix caps leak
Tim-Philipp Müller [Thu, 27 Jun 2013 23:24:33 +0000 (00:24 +0100)]
timelinepipeline: fix caps leak

11 years agotimelinepipeline: make the caps from encoding profile writable
Руслан Ижбулатов [Wed, 26 Jun 2013 12:57:17 +0000 (12:57 +0000)]
timelinepipeline: make the caps from encoding profile writable

https://bugzilla.gnome.org/show_bug.cgi?id=703121

11 years agourisource: Do not let user reset the URI property
Thibault Saunier [Sun, 23 Jun 2013 22:27:41 +0000 (18:27 -0400)]
urisource: Do not let user reset the URI property

This is not supported right now and would lead to unexpected behaviours

11 years agoges: Add a framepositionner element used in ges-smart-mixer and ges-uri-source
Mathieu Duponchelle [Mon, 3 Jun 2013 21:02:15 +0000 (23:02 +0200)]
ges: Add a framepositionner element used in ges-smart-mixer and ges-uri-source

It adds metadata on the buffers and the mixer parses them.
This is done because we want to keep positionning properties
and set them on the dynamic mixer pad.

Conflicts:
ges/Makefile.am

11 years agotests: Add a audio/video mixing test.
Mathieu Duponchelle [Thu, 30 May 2013 04:05:48 +0000 (06:05 +0200)]
tests: Add a audio/video mixing test.

11 years agovideo-track: "implement" get_mixing_element.
Mathieu Duponchelle [Thu, 30 May 2013 04:04:47 +0000 (06:04 +0200)]
video-track: "implement" get_mixing_element.

11 years agoges-smart-mixer: first code dump, mainly copy paste from ges-smart-adder.
Mathieu Duponchelle [Wed, 29 May 2013 16:48:42 +0000 (18:48 +0200)]
ges-smart-mixer: first code dump, mainly copy paste from ges-smart-adder.

11 years agoges-layer.c: notify priority changes.
Simon Corsin [Tue, 30 Apr 2013 17:19:39 +0000 (19:19 +0200)]
ges-layer.c: notify priority changes.

11 years agoges-uri-source: Refactoring work.
Mathieu Duponchelle [Thu, 16 May 2013 07:40:22 +0000 (09:40 +0200)]
ges-uri-source: Refactoring work.

+ Categorize functions (Callbacks, vmethods)
+ make more generic functions for the creation of the bin.

11 years agouri-source: Expose the volume property.
Mathieu Duponchelle [Thu, 16 May 2013 06:10:35 +0000 (08:10 +0200)]
uri-source: Expose the volume property.

+ Make the pspec_hash function an internal util.
+ Add a create_props_hashtable implementation
+ If TRACK_TYPE_AUDIO, put the volume properties in the hashtable.

11 years agouri-source: when creating the audio element, set the volume to the layr volume when...
Mathieu Duponchelle [Thu, 16 May 2013 02:22:16 +0000 (04:22 +0200)]
uri-source: when creating the audio element, set the volume to the layr volume when necessary.

11 years agoges-uri-source: don't use gnlurisource but a custom bin.
Mathieu Duponchelle [Thu, 16 May 2013 01:27:20 +0000 (03:27 +0200)]
ges-uri-source: don't use gnlurisource but a custom bin.

+ This bin is a uridecodebin when GES_TRACK_TYPE_VIDEO
+ This bin contains a uridecodebin and a volume when GES_TRACK_TYPE_AUDIO

11 years agosmart-adder: remove volume from the bin, which quite simplifies the code.
Mathieu Duponchelle [Wed, 15 May 2013 16:59:10 +0000 (18:59 +0200)]
smart-adder: remove volume from the bin, which quite simplifies the code.

+ Don't be too smart, adder.

11 years agosmart-adder: Implement a GESSmartAdder bin element to be used as mixing element
Thibault Saunier [Sat, 30 Mar 2013 23:08:15 +0000 (00:08 +0100)]
smart-adder: Implement a GESSmartAdder bin element to be used as mixing element

..in audio tracks

11 years agometa-container: Add a VOLUME default meta to layers
Thibault Saunier [Mon, 22 Apr 2013 03:21:58 +0000 (00:21 -0300)]
meta-container: Add a VOLUME default meta to layers

11 years agoges: Misc documentation fixes
Thibault Saunier [Sun, 31 Mar 2013 10:34:58 +0000 (12:34 +0200)]
ges: Misc documentation fixes

11 years agotrack: Implement infrastructure for mixing
Thibault Saunier [Sat, 30 Mar 2013 18:02:52 +0000 (19:02 +0100)]
track: Implement infrastructure for mixing

11 years agotrack-element: Set a reference to the GESTrackElement on the GnlObjects using qdata
Thibault Saunier [Sat, 30 Mar 2013 18:01:26 +0000 (19:01 +0100)]
track-element: Set a reference to the GESTrackElement on the GnlObjects using qdata

11 years agoges: Make space in the GESTracks to be able to add mixing elements later
Thibault Saunier [Fri, 29 Mar 2013 18:23:00 +0000 (19:23 +0100)]
ges: Make space in the GESTracks to be able to add mixing elements later

And update the tests

11 years agotests:effects: Make use of normal layers, and enhance tests
Thibault Saunier [Fri, 29 Mar 2013 18:04:54 +0000 (19:04 +0100)]
tests:effects: Make use of normal layers, and enhance tests

11 years agolayer: Fix some mix up in variable names
Thibault Saunier [Fri, 29 Mar 2013 17:56:31 +0000 (18:56 +0100)]
layer: Fix some mix up in variable names

11 years agolayer: Simplify a bit how we handle priorities
Thibault Saunier [Fri, 29 Mar 2013 17:55:27 +0000 (18:55 +0100)]
layer: Simplify a bit how we handle priorities

11 years agotimeline-element: Make it possible to reset the timeline property to NULL
Thibault Saunier [Fri, 29 Mar 2013 17:53:25 +0000 (18:53 +0100)]
timeline-element: Make it possible to reset the timeline property to NULL

+ Add some debug symbol

11 years agoges: Implement GESAudioTrack and GESVideoTrack, subclasses of GESTrack
Thibault Saunier [Thu, 28 Mar 2013 17:51:45 +0000 (18:51 +0100)]
ges: Implement GESAudioTrack and GESVideoTrack, subclasses of GESTrack

11 years agoges-launch: Report position while playing back
Thibault Saunier [Mon, 17 Jun 2013 01:47:52 +0000 (21:47 -0400)]
ges-launch: Report position while playing back

Giving more feedbacks to the user

11 years agoges-launch: Remove xptv formatter related code
Thibault Saunier [Sun, 16 Jun 2013 23:10:18 +0000 (19:10 -0400)]
ges-launch: Remove xptv formatter related code

It is not usefull anymore

11 years agoges-launch: Properly add UriClipAssets to the project
Thibault Saunier [Sun, 16 Jun 2013 02:13:20 +0000 (22:13 -0400)]
ges-launch: Properly add UriClipAssets to the project

11 years agoges: Port to the new commit based API in GNL
Thibault Saunier [Sun, 9 Jun 2013 16:29:05 +0000 (12:29 -0400)]
ges: Port to the new commit based API in GNL

The GNL API changed to go from a model where user could
enable/disable updates in the composition, which leaded to races
in many places, to a model where any positioning change in the
composition is not directly done but 'cached' and then the user
has to commit those changes so they become effective in the media
processing stack.

The new API in GES is pretty similare and is basically copy
pasting this new design.

We still need to see if in some context it would make sense to add
a mode where we would commit any changes ourself at the end of our
operation for basic use cases.

Removed APIs:
  ges_timeline_enable_update
  ges_timeline_is_updating
  ges_track_enable_update
  ges_track_is_updating

New APIs:
  ges_track_commit
  ges_timeline_commit

11 years agotimeline: fix segfaults
Lubosz Sarnecki [Thu, 20 Jun 2013 12:23:26 +0000 (14:23 +0200)]
timeline: fix segfaults

don't call the timeline update, when the reference is invalid

https://bugzilla.gnome.org/show_bug.cgi?id=702605

11 years agoautogen.sh: generate from common module, fixing srcdir != builddir build
Tim-Philipp Müller [Tue, 18 Jun 2013 12:32:38 +0000 (13:32 +0100)]
autogen.sh: generate from common module, fixing srcdir != builddir build

https://bugzilla.gnome.org/show_bug.cgi?id=702424

11 years agoAdd .doap file
Tim-Philipp Müller [Tue, 18 Jun 2013 12:14:48 +0000 (13:14 +0100)]
Add .doap file

Needed for common/update-autogen, but generally not a bad idea.

11 years agoges-uri-asset.c: Fix ges_uri_asset_request_sync annotations.
Mathieu Duponchelle [Tue, 30 Apr 2013 17:16:10 +0000 (19:16 +0200)]
ges-uri-asset.c: Fix ges_uri_asset_request_sync annotations.

11 years agoproject: Disable update in the project rather than the formatter
Thibault Saunier [Wed, 12 Jun 2013 15:32:16 +0000 (11:32 -0400)]
project: Disable update in the project rather than the formatter

We need to make sure the update are disabled until the project is fully
loaded, let the responsability to the project instead of the formatter

11 years agotimeline: Sync track enable_update property with parent
Thibault Saunier [Wed, 12 Jun 2013 15:09:13 +0000 (11:09 -0400)]
timeline: Sync track enable_update property with parent

When we add a track to a timeline, we want it "enable update" property
to be set to the timeline's

11 years agoges-launch: Make use of assets for uri clips
Thibault Saunier [Wed, 12 Jun 2013 14:48:03 +0000 (10:48 -0400)]
ges-launch: Make use of assets for uri clips

It avoids races in TrackElement creations.

We should make use of assets everywhere in ges-launch but start using
them for uriclips first for now.

11 years agoAutomatic update of common submodule
Sebastian Dröge [Wed, 5 Jun 2013 13:18:36 +0000 (15:18 +0200)]
Automatic update of common submodule

From 098c0d7 to 01a7a46

11 years agotests: Pass a ref of CAPS_ANY to ges_track_new
Thibault Saunier [Thu, 30 May 2013 15:40:36 +0000 (11:40 -0400)]
tests: Pass a ref of CAPS_ANY to ges_track_new

11 years agotests: Add a basic test for pipeline state change
Thibault Saunier [Wed, 29 May 2013 20:48:03 +0000 (16:48 -0400)]
tests: Add a basic test for pipeline state change

Add some test utils to create a pipeline

11 years agoges: Protect from Gst dynamic callbacks
Thibault Saunier [Wed, 29 May 2013 18:05:52 +0000 (14:05 -0400)]
ges: Protect from Gst dynamic callbacks

The pad-added and no-more-pad signal can be emited from any thread
so we have to protect our code from that

11 years agotrack: Update all gaps when timeline duration changed
Thibault Saunier [Thu, 23 May 2013 19:52:35 +0000 (15:52 -0400)]
track: Update all gaps when timeline duration changed

And add a unit test to check that a gap is created in empty tracks

11 years agoFinish renaming filesource to urisource
Thibault Saunier [Thu, 23 May 2013 17:16:22 +0000 (13:16 -0400)]
Finish renaming filesource to urisource

11 years agotrack: Update gaps when we set the timeline
Thibault Saunier [Thu, 23 May 2013 15:57:42 +0000 (11:57 -0400)]
track: Update gaps when we set the timeline

11 years agoges-pitivi-formatter: Remove some unneeded includes and clean up includes
Sebastian Dröge [Tue, 28 May 2013 06:51:08 +0000 (08:51 +0200)]
ges-pitivi-formatter: Remove some unneeded includes and clean up includes

Fixes the build on Windows, where there's no unistd.h... which wasn't
needed at all.

https://bugzilla.gnome.org/show_bug.cgi?id=701115

11 years agotests: Use the gst_check_run_suite helper everywhere
Thibault Saunier [Tue, 28 May 2013 02:10:03 +0000 (22:10 -0400)]
tests: Use the gst_check_run_suite helper everywhere

Using GST_CHECK_MAIN where appropriate

This way it is possible to specify an XML file to store tests results in

11 years agoAutomatic update of common submodule
Sebastian Dröge [Wed, 15 May 2013 08:55:22 +0000 (10:55 +0200)]
Automatic update of common submodule

From 5edcd85 to 098c0d7

11 years agoUpdate gitignore
Nicolas Dufresne [Tue, 5 Mar 2013 22:09:18 +0000 (17:09 -0500)]
Update gitignore

11 years agoGESAssetLoadingReturn cannot be internal
Nicolas Dufresne [Tue, 5 Mar 2013 22:07:29 +0000 (17:07 -0500)]
GESAssetLoadingReturn cannot be internal

The enumeration is referenced in a public API.

11 years agoclip: Avoid corruption of our list of children while ungrouping
Thibault Saunier [Sun, 5 May 2013 10:13:24 +0000 (11:13 +0100)]
clip: Avoid corruption of our list of children while ungrouping

11 years agotests: add project auto-transition test
Anton Belka [Wed, 24 Apr 2013 12:25:20 +0000 (15:25 +0300)]
tests: add project auto-transition test

11 years agotests: add timeline auto-transition test
Anton Belka [Wed, 24 Apr 2013 12:23:44 +0000 (15:23 +0300)]
tests: add timeline auto-transition test

11 years agotimeline: add auto-transition
Anton Belka [Wed, 24 Apr 2013 12:18:01 +0000 (15:18 +0300)]
timeline: add auto-transition

API:
 ges_timeline_get_auto_transition
 ges_timeline_set_auto_transition
 GESTimeline::auto-transition

11 years agobasexmlformatter: Do not allow empty file loading
Thibault Saunier [Tue, 30 Apr 2013 17:26:57 +0000 (18:26 +0100)]
basexmlformatter: Do not allow empty file loading

11 years agovideo-test-src: Force video/x-raw
Thibault Saunier [Sat, 27 Apr 2013 06:45:29 +0000 (03:45 -0300)]
video-test-src: Force video/x-raw

Avoiding to hit errors with video/x-bayer

11 years agoaudiotransition: Add a resampler in the audio transition bin
Mathieu Duponchelle [Sun, 21 Apr 2013 19:35:22 +0000 (21:35 +0200)]
audiotransition: Add a resampler in the audio transition bin

11 years agoaudiotransition: Fix porting error of the interpollator
Mathieu Duponchelle [Sun, 21 Apr 2013 17:21:14 +0000 (19:21 +0200)]
audiotransition: Fix porting error of the interpollator

  + update debug statements s/LOG/INFO

(acontrolsource != bcontrolsource)

11 years agotest-clip: Do not set black/silent by default
Thibault Saunier [Sat, 27 Apr 2013 06:44:40 +0000 (03:44 -0300)]
test-clip: Do not set black/silent by default

11 years agoreplace query_caps with get_current_caps. don't check for unused gnlobject.
Mathieu Duponchelle [Wed, 24 Apr 2013 01:50:40 +0000 (03:50 +0200)]
replace query_caps with get_current_caps. don't check for unused gnlobject.

11 years agoRename GESTimelineLayer to GESLayer
Thibault Saunier [Tue, 23 Apr 2013 23:04:04 +0000 (20:04 -0300)]
Rename GESTimelineLayer to GESLayer

11 years agolayer: Remove the "rate" property of ges_timeline_layer_add_asset
Thibault Saunier [Tue, 23 Apr 2013 22:57:44 +0000 (19:57 -0300)]
layer: Remove the "rate" property of ges_timeline_layer_add_asset

API:
 - ges_timeline_layer_add_asset (layer, asset,  start,  inpoint, duration, rate, track_types);
 + ges_timeline_layer_add_asset (layer, asset,  start,  inpoint, duration, track_types);

11 years agotrackelement: asynchronously add bindings if the track-element is not in a track...
Mathieu Duponchelle [Tue, 23 Apr 2013 20:38:23 +0000 (22:38 +0200)]
trackelement: asynchronously add bindings if the track-element is not in a track yet.

Also fix annotations.

11 years agoformatter: Pass a dummy instance of formatter to virtual method
Thibault Saunier [Mon, 22 Apr 2013 20:34:09 +0000 (17:34 -0300)]
formatter: Pass a dummy instance of formatter to virtual method

Instead of passing the class itself

11 years agoAutomatic update of common submodule
Tim-Philipp Müller [Mon, 22 Apr 2013 22:56:03 +0000 (23:56 +0100)]
Automatic update of common submodule

From 3cb3d3c to 5edcd85

11 years agoFix compilation
Thibault Saunier [Mon, 22 Apr 2013 12:41:26 +0000 (09:41 -0300)]
Fix compilation

11 years agoxml-formatter: Use G_GUINT64_FORMAT where needed
Thibault Saunier [Mon, 22 Apr 2013 00:29:29 +0000 (21:29 -0300)]
xml-formatter: Use G_GUINT64_FORMAT where needed

11 years agouri-clip-asset: Add "_class_" to a class method
Thibault Saunier [Mon, 22 Apr 2013 00:13:00 +0000 (21:13 -0300)]
uri-clip-asset: Add "_class_" to a class method

API CHANGE:
- ges_uri_clip_asset_set_timeout
+ ges_uri_clip_asset_class_set_timeout

11 years agoges: Fix compilation with clang
Thibault Saunier [Mon, 22 Apr 2013 00:11:52 +0000 (21:11 -0300)]
ges: Fix compilation with clang

11 years agoproject: Accept NULL as a valid value for @id in _create_asset
Thibault Saunier [Fri, 19 Apr 2013 22:58:21 +0000 (19:58 -0300)]
project: Accept NULL as a valid value for @id in _create_asset

11 years agotests: Check splitting a clip with several TrackElement
Thibault Saunier [Thu, 18 Apr 2013 21:41:02 +0000 (18:41 -0300)]
tests: Check splitting a clip with several TrackElement

11 years agoclip: Rework the splitting method
Thibault Saunier [Fri, 19 Apr 2013 00:45:18 +0000 (21:45 -0300)]
clip: Rework the splitting method

  + Avoid setting clip duration of our parent ourself

Now each and every TrackElement inside a clip have the same
start/inpoint/duration

11 years agoges: Fix compilation
Thibault Saunier [Thu, 18 Apr 2013 21:59:52 +0000 (18:59 -0300)]
ges: Fix compilation

11 years agopipeline: Add API guards where needed
Thibault Saunier [Thu, 18 Apr 2013 21:37:17 +0000 (18:37 -0300)]
pipeline: Add API guards where needed

11 years agopipeline: Add a GError argument
Thibault Saunier [Wed, 17 Apr 2013 19:51:30 +0000 (16:51 -0300)]
pipeline: Add a GError argument

11 years agopipeline: Return FALSE in save_thumbnail when the operation fails
Thibault Saunier [Wed, 17 Apr 2013 19:48:05 +0000 (16:48 -0300)]
pipeline: Return FALSE in save_thumbnail when the operation fails

11 years agotests:timelineedition: Add a simple trimming test
Mathieu Duponchelle [Sun, 14 Apr 2013 23:30:10 +0000 (01:30 +0200)]
tests:timelineedition: Add a simple trimming test

11 years agocontainer: The TimelineElement.inpoint property is call "in-point" not inpoint
Thibault Saunier [Mon, 15 Apr 2013 02:19:02 +0000 (23:19 -0300)]
container: The TimelineElement.inpoint property is call "in-point" not inpoint

11 years agoges-clip: Remove the unlocked TrackElement APIs
Thibault Saunier [Fri, 22 Mar 2013 22:44:28 +0000 (19:44 -0300)]
ges-clip: Remove the unlocked TrackElement APIs

Remove APIs:
  ges_track_element_set_locked
  ges_track_element_is_locked

Those APIs where really not nice to use and were causing more issues
than solving them. If 2 time related properties of TimelineElement must
be different, then those element can *not* have the same parent.

Plus, with the new ges_container_group () API, we will recreate 1
GESClip containing the proper GESTimelineElements if it is the thing
to do.

11 years agopitivi-formatter: Remove broken code to handle unlocked track object
Thibault Saunier [Fri, 22 Mar 2013 22:34:14 +0000 (19:34 -0300)]
pitivi-formatter: Remove broken code to handle unlocked track object

WARNING: The plan is to remove unlocked track object APIs so this is
the first part of that process... that code was already broken, and
*needs* to be fixed anyway, better do it using new APIs

11 years agopitivi-formatter: Remove saving code
Thibault Saunier [Fri, 22 Mar 2013 21:43:30 +0000 (18:43 -0300)]
pitivi-formatter: Remove saving code

11 years agoAutomatic update of common submodule
Tim-Philipp Müller [Sun, 14 Apr 2013 16:58:38 +0000 (17:58 +0100)]
Automatic update of common submodule

From aed87ae to 3cb3d3c

11 years agoAutomatic update of common submodule
Stefan Sauer [Tue, 9 Apr 2013 19:03:03 +0000 (21:03 +0200)]
Automatic update of common submodule

From 04c7a1e to aed87ae

11 years agotimeline: call sync_state_with_parent when adding a child
Thibault Saunier [Tue, 9 Apr 2013 03:02:14 +0000 (00:02 -0300)]
timeline: call sync_state_with_parent when adding a child

11 years agotrack-element: Rename set_property_controlling_parameters set_control_source
Thibault Saunier [Sun, 31 Mar 2013 14:07:14 +0000 (16:07 +0200)]
track-element: Rename set_property_controlling_parameters set_control_source

  + Generate the documentation

11 years ago[Keyframes] Adds API to set a control binding on a track element, and the serializati...
Mathieu Duponchelle [Sat, 30 Mar 2013 17:54:50 +0000 (18:54 +0100)]
[Keyframes] Adds API to set a control binding on a track element, and the serialization code.

11 years agoChanging remaining clip::track-element-added to container::child-added
Thibault Saunier [Sat, 30 Mar 2013 14:40:38 +0000 (15:40 +0100)]
Changing remaining clip::track-element-added to container::child-added

11 years agopipeline: Implement the video overlay interface
Thibault Saunier [Sat, 30 Mar 2013 13:35:45 +0000 (14:35 +0100)]
pipeline: Implement the video overlay interface