- Nov 01, 2016
-
-
Sebastian Dröge authored
-
- Oct 26, 2016
-
-
-
Not enabled for the time being
-
Some scenarios might only be for video files and are meaningless for audio-only files
-
- Oct 25, 2016
-
-
Nirbheek Chauhan authored
This reverts commit e8e51bda. Does not actually work. See: https://bugzilla.gnome.org/show_bug.cgi?id=773114#c31
-
- Oct 21, 2016
-
-
- Oct 18, 2016
- Oct 14, 2016
-
-
Nicolas Dufresne authored
-
Nicolas Dufresne authored
In the automake build system we force C89 which does not allow mixing code and declaration.
-
Nicolas Dufresne authored
This was added in the meson build but was only checked and not used in the automake build.
-
- Oct 10, 2016
-
-
Stefan Sauer authored
Move this code to the window class, as multiple plugins are going to need it.
-
Stefan Sauer authored
This avoid that we have to chek the type in the getter. Also update the comment - we need the strip since the readline call will not strip the newline.
-
- Oct 09, 2016
-
-
For consistency with the rest of the autogen.sh scripts. https://bugzilla.gnome.org/show_bug.cgi?id=772616
-
- Oct 08, 2016
-
-
Stefan Sauer authored
This gets us the line shading back and some size savings.
-
Stefan Sauer authored
COL_MESSAGE contains the message offset as an internal optimization. When preparing a row for filters, we need to replace this. Otherwise filters get an 'int' instead of the 'string' they expect.
-
- Oct 07, 2016
- Oct 05, 2016
-
-
parametter -> parameter https://bugzilla.gnome.org/show_bug.cgi?id=772439
-
- Sep 30, 2016
-
-
Stefan Sauer authored
Inline a few statements. Remove unused variables.
-
Stefan Sauer authored
-
Thibault Saunier authored
-
Tim-Philipp Müller authored
-
Sebastian Dröge authored
-
- Sep 28, 2016
-
-
Thibault Saunier authored
-
Stefan Sauer authored
Also add a first doc string about the plugin initialisation.
-
Stefan Sauer authored
We have a commit hook on the repo. Get all files to match the pep8 guidelines.
-
Stefan Sauer authored
Don't use * imports. Don't rely on package level imports.
-
- Sep 26, 2016
-
-
Thibault Saunier authored
-
Thibault Saunier authored
And let the user configure on what level of issues to do it by setting the GST_VALIDATE_CONFIG env var. Always dot on critical issues.
-
Thibault Saunier authored
Instead of forcing user to put it in a file. We are simply using the GstCaps synthax to parse it.
-
Thibault Saunier authored
That will allow us to add more flexibility regarding the way we report thing to the user and will allow us to properly make reports per pipeline.
-
Thibault Saunier authored
-
Thibault Saunier authored
And take into account issue details level to generate backtrace.
-
Thibault Saunier authored
Until now we could set report levels to the monitor, this adds support for setting report level for the issue types too.
-
Reynaldo H. Verdejo Pinochet authored
No encoders found, no static src/sink pads found and keyunit and force-stop error conditions.
-
Reynaldo H. Verdejo Pinochet authored
-
- Sep 22, 2016
-
-
Thibault Saunier authored
It should anyway be pretty interesting pieces of information.
-
Javier Martinez Canillas authored
The unw_word_t type has different sizes for 32-bit and 64-bit, so using the %lx format specifier on a 32-bit CPU leads to the following compile warning: CC libgstvalidate_1.0_la-gst-validate-report.lo gst-validate-report.c: In function 'generate_unwind_trace': gst-validate-report.c:137:36: error: format '%lx' expects argument of type 'long unsigned int', but argument 4 has type 'unw_word_t {aka unsigned int}' [-Werror=format=] g_string_append_printf (trace, "%s (0x%lx)\n", name, offset); Cast to long so the %lx fomart specifier can be always used.
-
Thibault Saunier authored
-
- Sep 20, 2016
-
-
Tim-Philipp Müller authored
gst-validate-report.c: In function ‘generate_unwind_trace’: gst-validate-report.c:116:1: error: old-style function definition [-Werror=old-style-definition] generate_unwind_trace () ^~~~~~~~~~~~~~~~~~~~~ gst-validate-report.c:122:3: error: ISO C90 forbids mixed declarations and code [-Werror=declaration-after-statement] unw_cursor_t cursor; ^~~~~~~~~~~~
-