Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
https://bugzilla.gnome.org/show_bug.cgi?id=772159
|
|
|
|
|
|
|
|
From b18d820 to f980fd9
|
|
From f49c55e to b18d820
|
|
|
|
|
|
|
|
|
|
gstsiddec.o
gstsiddec.cc: In function ‘void play_loop(GstPad*)’:
gstsiddec.cc:446:18: error: unused variable ‘reason’ [-Werror=unused-variable]
const gchar *reason = gst_flow_get_name (ret);
^
|
|
https://bugzilla.gnome.org/show_bug.cgi?id=770158
|
|
|
|
|
|
https://github.com/mesonbuild/meson
With contributions from:
Tim-Philipp Müller <tim@centricular.com>
Jussi Pakkanen <jpakkane@gmail.com> (original port)
Highlights of the features provided are:
* Faster builds on Linux (~40-50% faster)
* The ability to build with MSVC on Windows
* Generate Visual Studio project files
* Generate XCode project files
* Much faster builds on Windows (on-par with Linux)
* Seriously fast configure and building on embedded
... and many more. For more details see:
http://blog.nirbheek.in/2016/05/gstreamer-and-meson-new-hope.html
http://blog.nirbheek.in/2016/07/building-and-developing-gstreamer-using.html
Building with Meson should work on both Linux and Windows, but may
need a few more tweaks on other operating systems.
|
|
_stdint.h is generated by Autotools and we don't really need it. All
supported platforms now ship with stdint.h. The only stickler was MSVC,
and since Visual Studio 2015 it also ships stdint.h now.
|
|
|
|
For consistency.
https://bugzilla.gnome.org/show_bug.cgi?id=769610
|
|
https://bugzilla.gnome.org/show_bug.cgi?id=769610
|
|
https://bugzilla.gnome.org/show_bug.cgi?id=769418
|
|
The format specification can be found here:
http://www.dvdforum.org/images/Guideline1394V10R0_20020911.pdf
Note: This format is also used for Wifi-Display.
https://bugzilla.gnome.org/show_bug.cgi?id=765807
|
|
https://bugzilla.gnome.org/show_bug.cgi?id=765807
|
|
Avoid compiler warnings "‘foo’ may be used uninitialized in this
function" when building with -O3 by checking the return bool value
of format conversion function.
https://bugzilla.gnome.org/show_bug.cgi?id=769116
|
|
From f363b32 to f49c55e
|
|
|
|
|
|
|
|
|
|
From ac2f647 to f363b32
|
|
Fix seeking when demuxer is in INDEX state. This happens when we
reached the end of the stream. It should still be possible to do
a flushing seek and seek back to any other position though. Instead
the demuxer would just go straight to EOS again instead of going
back to processing packets again from the new position.
https://bugzilla.gnome.org/show_bug.cgi?id=749066
|
|
The clock returned by gst_system_clock_obtain() was never unreffed.
https://bugzilla.gnome.org/show_bug.cgi?id=766565
|
|
|
|
|
|
Fixes MSVC compiler warning:
amrwbdec.c(99): warning C4133: '=': incompatible types
- from 'gboolean (__cdecl *)(GstAudioDecoder *,GstAdapter *,gint *,gint *)' to
'GstFlowReturn (__cdecl *)(GstAudioDecoder *,GstAdapter *,gint *,gint *)'
gsta52dec.c(156): warning C4133: '=': incompatible types
- from 'gboolean (__cdecl *)(GstAudioDecoder *,GstAdapter *,gint *,gint *)' to
'GstFlowReturn (__cdecl *)(GstAudioDecoder *,GstAdapter *,gint *,gint *)'
|
|
Fix syntax errors when compiling against cerbero-provided libmpg123
headers. We do the same as the libmpg123 internal visual studio
build here.
mpg123.h(1378): error C2143: syntax error: missing ')' before '('
mpg123.h(1378): error C2081: 'ssize_t': name in formal parameter list illegal
mpg123.h(1378): error C2143: syntax error: missing ')' before '*'
mpg123.h(1378): error C2091: function returns function
mpg123.h(1378): error C2143: syntax error: missing '{' before '*'
mpg123.h(1378): error C2059: syntax error: ')'
mpg123.h(1379): error C2143: syntax error: missing ')' before '*'
mpg123.h(1379): error C2365: 'off_t': redefinition; previous definition was 'typedef'
...
|
|
libmpeg2 0.5.1 was released in mid-2008, let's bump the requirement
and get rid of version-dependent code paths. There's still
avdec_mpeg2video for those who are stuck on ancient distros which
we don't target any more.
Also fixes build with MSVC, which doesn't like #if #else #endif
inside macro arguments (like the GST_DEBUG_OBJECT in line 941).
|
|
From 6f2d209 to ac2f647
|
|
https://bugzilla.gnome.org/show_bug.cgi?id=763082
|
|
|
|
|
|
|
|
|
|
|
|
When dealing with accurate seeks, we want to return exactly the segment
that was requested by the seek event, and not adjust the values.
https://bugzilla.gnome.org/show_bug.cgi?id=755469
|
|
|
|
|
|
|