- Mar 03, 2018
- Mar 02, 2018
- Mar 01, 2018
-
-
Mathieu Duponchelle authored
-
- Feb 27, 2018
-
-
Thibault Saunier authored
-
The documentation states that it returns a (transfer full) list of GESClip but it was returning a (transfer container) list. Make sure to actually make it (transfer full). https://bugzilla.gnome.org/show_bug.cgi?id=793874
-
- Feb 22, 2018
-
-
Thibault Saunier authored
-
- Feb 21, 2018
-
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
.. and tighten check for disabled gst debugging sytem. add_global_arguments() can't be used in subprojects. It's entirely possible that ges is a subproject but gstreamer is picked up from an installed location, so we should really use add_project_arguments() in both cases.
-
- Feb 15, 2018
-
-
Tim-Philipp Müller authored
-
- Feb 08, 2018
-
-
Tim-Philipp Müller authored
WARNING: Trying to compare values of different types (str, int). The result of this is undefined and will become a hard error in a future Meson release.
-
- Feb 05, 2018
-
-
- Jan 30, 2018
-
-
- Jan 11, 2018
-
-
The entries of the array are "gchar *" and not "gchar **" CID #1427091 CID #1427120
-
- Dec 20, 2017
-
-
- Dec 19, 2017
-
-
Mathieu Duponchelle authored
The property has been removed, and using a capsfilter instead is the appropriate solution.
-
- Dec 14, 2017
-
-
Matthew Waters authored
From e8c7a71 to 3fa2c9e
-
- Nov 27, 2017
-
-
There are definitely more left, but don't have time for more debugging
-
Matthew Waters authored
From 3f4aa96 to e8c7a71
-
- Nov 26, 2017
-
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
They're no longer needed, symbol exporting is now explicit via GST_EXPORT in all cases (autotools, meson, incl. MSVC).
-
Tim-Philipp Müller authored
Instead, use -fvisibility=hidden and explicit exports via GST_EXPORT. This should result in consistent behaviour for the autotools and Meson builds.
-
Tim-Philipp Müller authored
-
- Nov 25, 2017
-
-
Thibault Saunier authored
Fixes https://phabricator.freedesktop.org/T7862
-
- Nov 23, 2017
-
-
Otherwise every single run of every single test would recreate a registry
-
- Nov 21, 2017
- Nov 07, 2017
-
-
Thibault Saunier authored
-
Thibault Saunier authored
Reviewed-by: Alex Băluț <<alexandru.balut@gmail.com>> Differential Revision: https://phabricator.freedesktop.org/D1873
-
- Oct 31, 2017
-
-
Thibault Saunier authored
Allowing GES users to have control over how compositing is done
-
- Sep 20, 2017
-
-
Sebastian Dröge authored
-
- Sep 19, 2017
-
-
Nicolas Dufresne authored
We have an optiominisation to avoid double seeks when a seek is passed the end of the current stack. The problem, is that we no longer flush the pipeline when this code is reached. This patch comments out this optimization adding a FIXME. As mention, flushing the stack instead of seeking would work, but does not seem trivial considering all the mechanic inplace to forward or not the events. https://bugzilla.gnome.org/show_bug.cgi?id=787405
-
Nicolas Dufresne authored
The allocation query may block on the sink when in pause. As a side effect, we may never get a buffer now that tee does forward the allocation query. This would often lead in a pipeline stall. https://bugzilla.gnome.org/show_bug.cgi?id=787405
-
- Sep 07, 2017
-
-
Nicolas Dufresne authored
-
Nicolas Dufresne authored
This fixes the usage of gst-validate-launcher ges with an installed version of GES.
-
- Sep 01, 2017
-
-
Stefan Popa authored
When setting a new control binding on a track element, the old control binding (if any) is going to be removed. Make sure the "control-binding-removed" signal is emitted in this case. Fixes https://phabricator.freedesktop.org/T7340#95666 Reviewed-by: Thibault Saunier <thibault.saunier@collabora.com> Differential Revision: https://phabricator.freedesktop.org/D1842
-
- Aug 30, 2017
-
-
Thibault Saunier authored
This commit means that we do not get ASYNC_DONE anymore when commiting an empty timeline, which means that we need to special case that. This actually broke some code and does not bring in much. Fixes https://phabricator.freedesktop.org/T7802 Fixes https://phabricator.freedesktop.org/T7797 This reverts commit e570d1e0. Thanks @stefanzzz for investigating!
-
- Aug 26, 2017
-
-
Stefan Popa authored
Added support for saving/loading encoder and muxer advanced settings. Differential Revision: https://phabricator.freedesktop.org/D1837
-
- Aug 20, 2017
-
-
Thibault Saunier authored
In playsink the default video queue max size is 3 buffers, which is sometimes not enough for our use case. Allow up to 2 seconds of buffered data, giving us more time to do the transition between clips, and thus avoiding dropping frames in the sink when bringing up new clip takes too much time. Differential Revision: https://phabricator.freedesktop.org/D1854
-
- Aug 19, 2017
-
-
Thibault Saunier authored
We need to iterate over the previous element from trackelement_iter to find the first element that is at the moving point. Several elements can have the same start as the one initiating the move, and we need to take all of them into account. Fixes https://phabricator.freedesktop.org/T7819
-
Thibault Saunier authored
-