- Jul 19, 2018
-
-
Tim-Philipp Müller authored
- Jul 18, 2018
-
-
This was used to "close" a segment. It's no longer needed anymore in 1.x (it was essentially sending the same thing again)
-
And not on all the time
-
- May 17, 2018
-
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
- Apr 17, 2018
-
-
Sebastian Dröge authored
If we have codec_data it will be AVC, otherwise assume byte-stream.
-
- Mar 19, 2018
-
-
Tim-Philipp Müller authored
- Mar 13, 2018
-
-
Tim-Philipp Müller authored
- Mar 12, 2018
-
-
Tim-Philipp Müller authored
-
- Mar 08, 2018
- Mar 03, 2018
-
-
Tim-Philipp Müller authored
- Mar 01, 2018
-
-
Mathieu Duponchelle authored
-
- Feb 28, 2018
-
-
Tim-Philipp Müller authored
libx264 used to be built for one specific bit depth, and if we wanted to support multiple bit depths we would have to dynamically load the right .so from different paths. That has changed now, and libx264 can include support for multiple depths in the same lib, so we don't need to do the dlopen() dance any more. We'll keep the vtable stuff around until we can drop support for older x264. gstx264enc.c:2927:36: error: ‘x264_bit_depth’ undeclared https://bugzilla.gnome.org/show_bug.cgi?id=792111
-
- Feb 27, 2018
- Feb 21, 2018
-
-
Tim-Philipp Müller authored
add_global_arguments() can't be used in subprojects. It's entirely possible that -ugly 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
-
Tim-Philipp Müller authored
-
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 03, 2018
-
-
Those functions can be disabled. Instead just use the (existing) function. CID #1427121
-
Those functions can be disabled. Instead just use the (existing) function. CID #1427093
-
- Dec 26, 2017
-
-
Tim-Philipp Müller authored
-
- Dec 14, 2017
-
-
Matthew Waters authored
From e8c7a71 to 3fa2c9e
-
- Dec 08, 2017
-
-
VUI(Video Usability Information) parameters should be set according to the specification. However, some of the existing hardware decoders refuse to decode in certain combinations of the resolution and VUI parameters. To support the legacy decoders, this patch provides 'insert-vui' to skip the settings. https://bugzilla.gnome.org/show_bug.cgi?id=791331
-
- Dec 06, 2017
-
-
Sebastian Dröge authored
LIBCDIO_VERSION_NUM was defined as e.g. 94 for 0.94 but is now defined as 1 for 1.0. We had various checks for < 83, which of course succeeded now although we are >= 0.83. Fix this by checking for < 76 (0.76) too, as that is the minimum version we currently support and everything < 76 is going to be >= 1.0. https://bugzilla.gnome.org/show_bug.cgi?id=791301
-
- Nov 27, 2017
-
-
Matthew Waters authored
From 3f4aa96 to e8c7a71
-
- Nov 26, 2017
-
-
Tim-Philipp Müller authored
Fix up for previous commit.
-
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.
-
- Nov 13, 2017
-
-
This is a regression that was introduced by commit 1803b3c1 " asfdemux: Add support for dvr-ms" The problem is that some files/streams might contain stream definition but there is no actual packets for those streams. This was used to "define" streams with different bitrates for example. The first_ts calculation resulted in never ever finding a valid first_ts since some streams were empty, and therefore never "activating" itself. Instead of that we first check if we are prerolled. And if we are we unconditionally get the "first_ts" The preroll check has been adapted to check whether streams of each defined type (i.e. audio/video/sub) has been prerolled. This solves the problem of having different streams of a particular type where only one stream actually has data.
-
The field was present but never set :)
-
- Sep 26, 2017
- Sep 18, 2017