Tim-Philipp Müller [Fri, 26 Apr 2019 17:28:04 +0000 (18:28 +0100)]
meson: sidplay: use library() instead of shared_module()
Like we do for other plugins, and also install a .pc file
if we build the plugin statically.
Sebastian Dröge [Mon, 22 Apr 2019 09:51:33 +0000 (12:51 +0300)]
meson: Always require the gmodule dependency
It's needed by the dvdread plugin but also by the x264 plugin in certain
circumstances. As it's part of GLib and always available, simply move it
as a hard dependency to the top-level meson.build.
Tim-Philipp Müller [Fri, 19 Apr 2019 09:28:17 +0000 (10:28 +0100)]
Back to development
Tim-Philipp Müller [Thu, 18 Apr 2019 23:24:40 +0000 (00:24 +0100)]
Release 1.16.0
Tim-Philipp Müller [Thu, 18 Apr 2019 23:24:40 +0000 (00:24 +0100)]
Update docs
Tim-Philipp Müller [Thu, 18 Apr 2019 23:24:38 +0000 (00:24 +0100)]
Update translations
Tim-Philipp Müller [Wed, 10 Apr 2019 23:28:18 +0000 (00:28 +0100)]
Release 1.15.90
Tim-Philipp Müller [Wed, 10 Apr 2019 23:28:18 +0000 (00:28 +0100)]
Update docs
Nirbheek Chauhan [Wed, 27 Mar 2019 16:29:45 +0000 (21:59 +0530)]
meson: Add a subproject fallback for x264
Piotr Drąg [Sun, 10 Mar 2019 19:33:31 +0000 (19:33 +0000)]
Update LINGUAS
Tim-Philipp Müller [Thu, 21 Mar 2019 11:23:07 +0000 (11:23 +0000)]
meson: add -Wno-unused also to C++ args when gst debug system is disabled
Tim-Philipp Müller [Mon, 4 Mar 2019 09:08:07 +0000 (09:08 +0000)]
Back to development
Mathieu Duponchelle [Thu, 28 Feb 2019 10:03:31 +0000 (11:03 +0100)]
x264enc: inject CEA708 closed captions
Tim-Philipp Müller [Tue, 26 Feb 2019 11:48:50 +0000 (11:48 +0000)]
Release 1.15.2
Tim-Philipp Müller [Tue, 26 Feb 2019 11:48:50 +0000 (11:48 +0000)]
Update docs
Tim-Philipp Müller [Tue, 26 Feb 2019 11:48:47 +0000 (11:48 +0000)]
Update translations
Tim-Philipp Müller [Fri, 22 Feb 2019 23:54:30 +0000 (23:54 +0000)]
sidplay: fix indentation
Sebastian Dröge [Tue, 12 Feb 2019 15:58:19 +0000 (17:58 +0200)]
dvdreadsrc: Work around GCC9 compiler warning
It's technically true but not for this specific type.
dvdreadsrc.c:394:65: error: taking address of packed member of ‘struct <anonymous>’ may result in an unaligned pointer value [-Werror=address-of-packed-member]
394 | gst_dvd_read_src_make_clut_change_event (src, src->cur_pgc->palette);
| ~~~~~~~~~~~~^~~~~~~~~
Seungha Yang [Wed, 30 Jan 2019 10:50:30 +0000 (19:50 +0900)]
meson: Add support orc fallback
Allow fallback to orc subproject if any.
Sebastian Dröge [Fri, 25 Jan 2019 12:38:05 +0000 (14:38 +0200)]
x264: Only enable dynamic loading code for x264 < 253
Otherwise we get some compiler warnings:
../subprojects/gst-plugins-ugly/ext/x264/gstx264enc.c:200:1: warning: ‘unload_x264’ defined but not used [-Wunused-function]
unload_x264 (GstX264EncVTable * vtable)
^~~~~~~~~~~
../subprojects/gst-plugins-ugly/ext/x264/gstx264enc.c:154:1: warning: ‘load_x264’ defined but not used [-Wunused-function]
load_x264 (const gchar * filename)
^~~~~~~~~
Sebastian Dröge [Fri, 25 Jan 2019 12:36:55 +0000 (14:36 +0200)]
x264: Link to gmodule in the meson build if extra x264 libraries are provided
We would dynamically load additional x264 libraries then.
Helmut Grohne [Thu, 17 Jan 2019 15:29:38 +0000 (17:29 +0200)]
sid: Fix cross-compilation by using AC_TRY_LINK instead of AC_TRY_RUN
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=917899
Tim-Philipp Müller [Thu, 17 Jan 2019 02:02:30 +0000 (02:02 +0000)]
Release 1.15.1
Tim-Philipp Müller [Thu, 17 Jan 2019 02:02:30 +0000 (02:02 +0000)]
Update docs
Tim-Philipp Müller [Thu, 17 Jan 2019 02:02:22 +0000 (02:02 +0000)]
Update translations
Seungha Yang [Sun, 30 Dec 2018 13:48:42 +0000 (22:48 +0900)]
tests: Enable test generic_states on Windows
... and drop needless unistd.h dependency
Seungha Yang [Tue, 18 Dec 2018 13:48:42 +0000 (22:48 +0900)]
meson: Use join_paths() instead '/'
Seungha Yang [Fri, 7 Dec 2018 14:39:01 +0000 (23:39 +0900)]
tests: Enable unit test on Windows
Remove hard-coded ':' whitelist separator since it varies with OS
Thibault Saunier [Wed, 5 Dec 2018 20:24:25 +0000 (17:24 -0300)]
Automatic update of common submodule
From ed78bee to 59cb678
Seungha Yang [Sat, 24 Nov 2018 10:28:19 +0000 (19:28 +0900)]
meson: Specify encoding to UTF-8 when building with MSVC
Use build arguments consistent with core and -base. This can also
remove noisy "C4819" warning of non-us locale MSVC.
Jordan Petridis [Mon, 12 Nov 2018 11:30:59 +0000 (13:30 +0200)]
Add Gitlab CI configuration
This commit adds a .gitlab-ci.yml file, which uses a feature
to fetch the config from a centralized repository. The intent is
to have all the gstreamer modules use the same configuration.
The configuration is currently hosted at the gst-ci repository
under the gitlab/ci_template.yml path.
Part of https://gitlab.freedesktop.org/gstreamer/gstreamer-project/issues/29
Matthew Waters [Mon, 5 Nov 2018 05:38:33 +0000 (05:38 +0000)]
Update common submodule location
Remove the git directory
Haihao Xiang [Mon, 5 Nov 2018 04:52:46 +0000 (12:52 +0800)]
Clone the code from gitlab
This fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/issues/22
Tim-Philipp Müller [Mon, 8 Oct 2018 19:45:52 +0000 (20:45 +0100)]
meson: use new 'python' module instead of deprecated
https://github.com/mesonbuild/meson/pull/4169
Tim-Philipp Müller [Sat, 22 Sep 2018 16:33:35 +0000 (17:33 +0100)]
tests: x264enc: fix leak in unit test
The static pad templates weren't static so their
contents were leaked. valgrind was not happy.
Also rename confusing define.
Seungha Yang [Tue, 18 Sep 2018 12:43:14 +0000 (21:43 +0900)]
x264enc: Avoid format decision per frame
Avoid switch/case per frame for format decision and detect the format
only if where it could be changed. Note that, whenever encoder->input_state
is changed, gst_x264_enc_init_encoder() is called.
https://bugzilla.gnome.org/show_bug.cgi?id=797164
Tim-Philipp Müller [Wed, 19 Sep 2018 11:00:32 +0000 (12:00 +0100)]
meson: add glib-checks option to disable API guards and such
We want this enabled by default, also in releases, but people
may want to disable this for performance-critical workloads or
on embedded devices.
Tim-Philipp Müller [Wed, 19 Sep 2018 10:58:54 +0000 (11:58 +0100)]
meson: fix missing closing bracket in option descriptions
Tim-Philipp Müller [Sat, 18 Aug 2018 20:22:42 +0000 (21:22 +0100)]
meson: add option to disable tests
Tim-Philipp Müller [Sat, 18 Aug 2018 20:20:20 +0000 (21:20 +0100)]
meson: clean up some cruft
Tim-Philipp Müller [Sat, 18 Aug 2018 20:15:23 +0000 (21:15 +0100)]
meson: add options to disable gobject cast checks and glib asserts
... and define G_DISABLE_DEPRECATED for development versions,
like we do in autotools.
Jan Alexander Steffens (heftig) [Thu, 16 Aug 2018 11:17:58 +0000 (13:17 +0200)]
x264enc: Set bit depth for x264 ≥ 153
https://bugzilla.gnome.org/show_bug.cgi?id=796975
Jan Alexander Steffens (heftig) [Thu, 16 Aug 2018 12:55:04 +0000 (14:55 +0200)]
x264enc: Remove superfluous x264_param_default
https://bugzilla.gnome.org/show_bug.cgi?id=796973
Nirbheek Chauhan [Fri, 27 Jul 2018 13:59:01 +0000 (19:29 +0530)]
Add feature options for all plugins
The only automagic dependency left is C++ availability detection.
https://bugzilla.gnome.org/show_bug.cgi?id=795107
Nirbheek Chauhan [Wed, 25 Jul 2018 11:47:21 +0000 (17:17 +0530)]
meson: Convert common options to feature options
The rest will be converted later, these are necessary for gst-build to
set options correctly.
https://bugzilla.gnome.org/show_bug.cgi?id=795107
Edward Hervey [Mon, 11 Jun 2018 12:43:20 +0000 (14:43 +0200)]
asfdemux: Remove 0.10 code
This was used to "close" a segment. It's no longer needed anymore
in 1.x (it was essentially sending the same thing again)
Edward Hervey [Fri, 11 May 2018 07:21:09 +0000 (09:21 +0200)]
asfdemux: Only send flush event on seeking flushes
And not on all the time
Tim-Philipp Müller [Mon, 21 May 2018 10:54:50 +0000 (11:54 +0100)]
meson: add 'nls' option to disable translations
And enable by default. Was implicitly disabled because
ENABLE_NLS was not defined. Also use .set_quoted().
Nirbheek Chauhan [Sat, 5 May 2018 14:02:00 +0000 (19:32 +0530)]
meson: Update option names to omit disable_ and with- prefixes
Also yield common options to the outer project (gst-build in our case)
so that they don't have to be set manually.
Jan Schmidt [Fri, 4 May 2018 12:54:01 +0000 (22:54 +1000)]
dvdsubdec: Take the highlight event from the structure.
Don't use GST_EVENT_TIMESTAMP to transfer any PTS
associated with a highlight event, instead store
it in the event structure directly, as
GstEvent::timestamp will disappear in GStreamer 2.0
https://bugzilla.gnome.org/show_bug.cgi?id=761477
Xavier Claessens [Tue, 24 Apr 2018 18:06:20 +0000 (14:06 -0400)]
Meson: Generate pc file for all plugins in ugly
https://bugzilla.gnome.org/show_bug.cgi?id=794568
Tim-Philipp Müller [Wed, 25 Apr 2018 09:59:11 +0000 (10:59 +0100)]
meson: use -Wl,-Bsymbolic-functions where supported
Just like the autotools build.
Sebastian Dröge [Mon, 16 Apr 2018 17:13:05 +0000 (20:13 +0300)]
asfdemux: Set the stream-format field of H264 streams
If we have codec_data it will be AVC, otherwise assume byte-stream.
Tim-Philipp Müller [Mon, 16 Apr 2018 09:53:12 +0000 (10:53 +0100)]
Automatic update of common submodule
From 3fa2c9e to ed78bee
Tim-Philipp Müller [Tue, 20 Mar 2018 09:26:15 +0000 (09:26 +0000)]
Back to development
Tim-Philipp Müller [Mon, 19 Mar 2018 20:19:43 +0000 (20:19 +0000)]
Release 1.14.0
Tim-Philipp Müller [Mon, 19 Mar 2018 20:19:43 +0000 (20:19 +0000)]
Update docs
Tim-Philipp Müller [Tue, 13 Mar 2018 19:17:58 +0000 (19:17 +0000)]
Release 1.13.91
Tim-Philipp Müller [Tue, 13 Mar 2018 19:17:58 +0000 (19:17 +0000)]
Update docs
Tim-Philipp Müller [Mon, 12 Mar 2018 20:19:19 +0000 (20:19 +0000)]
docs: plugins: minor addition to plugins list
Michael Tretter [Thu, 8 Mar 2018 09:12:16 +0000 (10:12 +0100)]
configure.ac: enable largefile support if possible
https://bugzilla.gnome.org/show_bug.cgi?id=793103
Tim-Philipp Müller [Sat, 3 Mar 2018 22:24:28 +0000 (22:24 +0000)]
Release 1.13.90
Tim-Philipp Müller [Sat, 3 Mar 2018 22:24:28 +0000 (22:24 +0000)]
Update docs
Mathieu Duponchelle [Thu, 1 Mar 2018 18:07:42 +0000 (19:07 +0100)]
meson: enable more warnings
Tim-Philipp Müller [Wed, 28 Feb 2018 10:07:13 +0000 (10:07 +0000)]
x264enc: fix build with newer x264 with support for multiple bit depths
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
Alicia Boya García [Tue, 27 Feb 2018 14:42:32 +0000 (15:42 +0100)]
x264enc: Add format example for option-string
https://bugzilla.gnome.org/show_bug.cgi?id=793879
Tim-Philipp Müller [Wed, 21 Feb 2018 19:47:36 +0000 (19:47 +0000)]
meson: simplify GST_DISABLE_GST_DEBUG check and don't use add_global_*
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.
Tim-Philipp Müller [Thu, 15 Feb 2018 19:44:21 +0000 (19:44 +0000)]
Back to development
Tim-Philipp Müller [Thu, 15 Feb 2018 17:10:13 +0000 (17:10 +0000)]
Release 1.13.1
Tim-Philipp Müller [Thu, 15 Feb 2018 17:07:42 +0000 (17:07 +0000)]
docs: update plugin docs
Tim-Philipp Müller [Thu, 15 Feb 2018 14:52:29 +0000 (14:52 +0000)]
po: update translations
Tim-Philipp Müller [Thu, 8 Feb 2018 19:09:45 +0000 (19:09 +0000)]
meson: make version numbers ints and fix int/string comparison
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.
Tim-Philipp Müller [Sun, 4 Feb 2018 11:03:36 +0000 (12:03 +0100)]
autotools: use -fno-strict-aliasing where supported
https://bugzilla.gnome.org/show_bug.cgi?id=769183
Tim-Philipp Müller [Tue, 30 Jan 2018 20:34:52 +0000 (20:34 +0000)]
meson: use -fno-strict-aliasing where supported
https://bugzilla.gnome.org/show_bug.cgi?id=769183
Edward Hervey [Wed, 3 Jan 2018 15:02:08 +0000 (16:02 +0100)]
amrnbdec: Don't use g_return_*_if_fail() on data parsing
Those functions can be disabled. Instead just use the (existing)
function.
CID #1427121
Edward Hervey [Wed, 3 Jan 2018 15:02:08 +0000 (16:02 +0100)]
amrwbdec: Don't use g_return_*_if_fail() on data parsing
Those functions can be disabled. Instead just use the (existing)
function.
CID #1427093
Tim-Philipp Müller [Tue, 26 Dec 2017 12:51:37 +0000 (13:51 +0100)]
meson: skip translations if gettext is not available
Matthew Waters [Thu, 14 Dec 2017 03:49:17 +0000 (14:49 +1100)]
Automatic update of common submodule
From e8c7a71 to 3fa2c9e
Justin Kim [Thu, 7 Dec 2017 06:52:58 +0000 (15:52 +0900)]
x264enc: add 'insert-vui' property for users to choose
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
Sebastian Dröge [Wed, 6 Dec 2017 11:01:39 +0000 (13:01 +0200)]
cdio: Fix build with cdio >= 1.0
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
Matthew Waters [Mon, 27 Nov 2017 09:11:56 +0000 (20:11 +1100)]
Automatic update of common submodule
From 3f4aa96 to e8c7a71
Tim-Philipp Müller [Sun, 26 Nov 2017 15:05:14 +0000 (15:05 +0000)]
configure: actually use -fvisibility if supported
Fix up for previous commit.
Tim-Philipp Müller [Sun, 26 Nov 2017 14:49:21 +0000 (14:49 +0000)]
autotools: stop controlling symbol visibility with -export-symbols-regex
Instead, use -fvisibility=hidden and explicit exports via GST_EXPORT.
This should result in consistent behaviour for the autotools and
Meson builds.
Edward Hervey [Mon, 13 Nov 2017 10:13:30 +0000 (11:13 +0100)]
asfdemux: Fix prerolling files with "empty" streams
This is a regression that was introduced by
commit
1803b3c18530cb0100d140c2b8e49a8dfe41f941
" 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.
Edward Hervey [Mon, 13 Nov 2017 10:09:31 +0000 (11:09 +0100)]
asfdemux: Store the stream type in streams
The field was present but never set :)
Ponnam Srinivas [Tue, 26 Sep 2017 04:41:24 +0000 (10:11 +0530)]
a52dec: Fix out buffer memory leak in error code path
https://bugzilla.gnome.org/show_bug.cgi?id=788119
Deepak Srivastava [Fri, 15 Sep 2017 11:36:58 +0000 (17:06 +0530)]
mpeg2dec: Fix buffer memory leak in error code path
https://bugzilla.gnome.org/show_bug.cgi?id=787817
Satya Prakash Gupta [Thu, 7 Sep 2017 07:57:26 +0000 (13:27 +0530)]
mpeg2dec: Unmap output video frame if copying to it fails
https://bugzilla.gnome.org/show_bug.cgi?id=787398
Satya Prakash Gupta [Thu, 31 Aug 2017 06:03:14 +0000 (11:33 +0530)]
realmedia: fix leak in asmrules error code path
https://bugzilla.gnome.org/show_bug.cgi?id=787056
Satya Prakash Gupta [Wed, 30 Aug 2017 13:11:28 +0000 (18:41 +0530)]
realmedia: Fix Memory leak in error case
https://bugzilla.gnome.org/show_bug.cgi?id=787014
Tim-Philipp Müller [Sat, 26 Aug 2017 12:02:26 +0000 (13:02 +0100)]
tests: remove files that were used by the mpg123 unit test
Tim-Philipp Müller [Sat, 26 Aug 2017 08:35:20 +0000 (09:35 +0100)]
Remove twolame plugin, moved to -good
https://bugzilla.gnome.org/show_bug.cgi?id=774252
Tim-Philipp Müller [Sat, 26 Aug 2017 07:51:01 +0000 (08:51 +0100)]
Remove lame plugin, moved to -good
https://bugzilla.gnome.org/show_bug.cgi?id=774252
Tim-Philipp Müller [Sun, 20 Aug 2017 13:31:02 +0000 (14:31 +0100)]
Remove mpg123 plugin, moved to -good
https://bugzilla.gnome.org/show_bug.cgi?id=774252
Tim-Philipp Müller [Thu, 17 Aug 2017 11:23:43 +0000 (12:23 +0100)]
Automatic update of common submodule
From 48a5d85 to 3f4aa96
Tim-Philipp Müller [Thu, 10 Aug 2017 14:48:27 +0000 (15:48 +0100)]
sidplay: hide symbols in meson for this c++ plugin too
Keep things local, as this is the only c++ plugin
in ugly currently.
Tim-Philipp Müller [Thu, 10 Aug 2017 10:55:58 +0000 (11:55 +0100)]
meson: don't export symbols by default
Only plugin entry points should be exported.
Currently plugins might export more symbols with
the meson build, as we don't have the exports
regexp there that we pass to libtool.
Mark Nauwelaerts [Wed, 9 Aug 2017 17:31:56 +0000 (19:31 +0200)]
x264enc: add FIXME note for future configuration cleanup
Satya Prakash Gupta [Tue, 25 Jul 2017 08:06:17 +0000 (13:36 +0530)]
dvdreadsrc: Fix string memory leak
https://bugzilla.gnome.org/show_bug.cgi?id=785388
Tim-Philipp Müller [Sat, 15 Jul 2017 14:01:09 +0000 (15:01 +0100)]
x264enc: fix indentation