- Nov 01, 2016
-
-
Sebastian Dröge authored
-
Sebastian Dröge authored
-
Sebastian Dröge authored
-
- Oct 31, 2016
-
-
If the playlist does not contain any iframe variants then demux->master->iframe_variants is NULL. If the previous variant is an iframe variant then there is at least one iframe variant and demux->master->iframe_variants->data can be safely used. https://bugzilla.gnome.org/show_bug.cgi?id=773635
-
mid_istream_open_mem() doesn't accept an autofree argument as of libtimidity >= 0.2.0 https://bugzilla.gnome.org/show_bug.cgi?id=772503
-
Changes are: - Use the wrapper functions to access opaque data types. To preserve backward compatibility, define fallback definitions - Remove the use of idiom "pqueue_size(ssl->d1->sent_messages)", since there is no replacement - Use RSA_generate_key_ex instead of the deprecated RSA_generate_key https://bugzilla.gnome.org/show_bug.cgi?id=773540
- Oct 29, 2016
-
-
Tim-Philipp Müller authored
rawvideoparse wouldn't error out on not-negotiated, but would just keep on going, because it didn't pass the flow return value back to the parent class and thus upstream, so the source wouldnt' stop streaming.
-
- Oct 28, 2016
-
-
Nirbheek Chauhan authored
The change to use GST_EXPORT for symbols under Windows requires GST_EXPORTS for internal use, and that is also needed under Autotools. The same thing is done for gstreamer-1.0.dll in -core.
-
Nirbheek Chauhan authored
The calling convention may be deprecated, but we still need it for OpenGL. The build issue was caused by an incorrect syntax being used for the WINAPI (__stdcall) prototype in function pointers which was accepted by GCC but is rejected by MSVC.
-
- Oct 27, 2016
-
-
Nirbheek Chauhan authored
It was always wrong since the symbols being exported in gstgl-1.0.dll are platform-specific, and the check we do in dist checks it on all platforms (which usually means Linux) and the list is instead Linux-specific right now. Even if we fix that, it can still never be right because it depends on your configuration even on a specific platform. For instance, when we start building EGL support on Windows using ANGLE, the symbol list will change depending on whether that is enabled or not. We also don't need this anymore since we use GST_EXPORT for all functions exported on Windows now.
-
Nirbheek Chauhan authored
MSVC warns about this because it's a C++ compiler, and this actually results in useful things such as the incorrect 'gboolean' return value for functions that return GstFlowReturn, so let's do explicit conversions to reduce the noise and increase its efficacy.
-
Nirbheek Chauhan authored
With MSVC, this gives the following warning: warning C4305: 'function': truncation from 'double' to 'gfloat' Apparently, MSVC does not figure out what type to use for constants based on the assignment. This warning is very spammy, so let's try to fix it.
-
Nirbheek Chauhan authored
All these should return GstFlowReturn, not gboolean
-
Nirbheek Chauhan authored
The error is: unary minus operator applied to unsigned type, result still unsigned This is a commonly-done operation in gstreamer and it's done on purpose. It's just noise.
-
Nirbheek Chauhan authored
This is a requirement for those symbols to be exported in gstgl-1.0.dll when building with the MSVC compiler
-
Nirbheek Chauhan authored
Currently only tested with MSVC.
-
Nirbheek Chauhan authored
The headers we include already define boolean on Windows with MSVC, and it leads to a typedef redefinition error with jpeglib.h which tries to redefine it in jmorecfg.h
-
Nirbheek Chauhan authored
GL/gl.h needs windows.h on MSVC WINAPI should not be used with MSVC. It also causes a build error.
-
- Oct 24, 2016
-
-
Reynaldo H. Verdejo Pinochet authored
-
Reynaldo H. Verdejo Pinochet authored
This function only does ZAP parsing. Additionally, remove redundant comment while at it.
-
Reynaldo H. Verdejo Pinochet authored
-
- Oct 23, 2016
- Oct 21, 2016
-
-
-
-
Scott D Phillips authored
It will later be added under tests/check https://bugzilla.gnome.org/show_bug.cgi?id=773114
-
Matthew Waters authored
At minimum, we only need to glFlush() if we are in a shared GL context environment. Move the glFinish() to when the actual wait is requested which may be never. Improves the throughput on older GL systems without GL3/GLES3 and/or fence sync objects.
-
- Oct 20, 2016
-
-
Thiago Sousa Santos authored
If it is is unknown, consider it infinite https://bugzilla.gnome.org/show_bug.cgi?id=768460
-
Thiago Sousa Santos authored
Representation can inherit SegmentList from Period if none is available from the AdaptationSet https://bugzilla.gnome.org/show_bug.cgi?id=768460
-
- Oct 19, 2016
-
-
Matthew Waters authored
-
- Oct 18, 2016
-
-
Matthew Waters authored
The function pointer and the user data arguments were swapped in both uses. https://bugzilla.gnome.org/show_bug.cgi?id=769382
-
Nirbheek Chauhan authored
In file included from ../subprojects/gst-plugins-base/gst-libs/gst/video/video.h:27:0, from ../subprojects/gst-plugins-bad/gst/segmentclip/gstvideosegmentclip.c:25: ../subprojects/gst-plugins-base/gst-libs/gst/video/video-format.h:27:39: fatal error: gst/video/video-enumtypes.h: No such file or directory #include <gst/video/video-enumtypes.h> ^ compilation terminated. https://ci.gstreamer.net/job/GStreamer-master-meson/269/console
-
Matthew Waters authored
We need to check for libGL if we may use desktop OpenGL *or* GLX.
-
Matthew Waters authored
Use the winsys variable for an incorrect winsys provided
-
- Oct 17, 2016
-
-
Vincent Penquerc'h authored
In M2TS mode, we need an extra 4 bytes in the buffer, so need to ensure the buffer can contain these. The allocation site does not know the mode, so this is done in all cases.
-
- Oct 15, 2016
-
-
Nirbheek Chauhan authored
Use the default for each compiler on every platform instead. This improves our compatibility with compilers that don't have gnu99 as a c_std.
-