summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-11-01srtpdec: add stats readonly property, similar to srtpencVincent Penquerc'h1-1/+43
https://bugzilla.gnome.org/show_bug.cgi?id=772357
2016-11-01player: Cache duration and return cached durationSebastian Dröge1-4/+7
https://bugzilla.gnome.org/show_bug.cgi?id=771992
2016-11-01bayer: fix stride inconsistencies for odd widthsTim-Philipp Müller2-3/+3
Consistently use GST_ROUND_UP_4(width) as stride for bayer buffers. Bayer data will usually come in widths that are multiples of 4 anyway, so hopefully this should not have any adverse impact on anyone in practice. Before, bayer2rgb required input buffers to are sized accordingly, but then didn't actually round up when calculating row offsets. rgb2bayer didn't use a rounded stride nor buffer size. https://bugzilla.gnome.org/show_bug.cgi?id=752014
2016-11-01Back to development1.11.0Sebastian Dröge1-4/+4
2016-11-01Release 1.10.01.10.0Sebastian Dröge123-173/+2086
2016-11-01Update .po filesSebastian Dröge40-544/+689
2016-11-01po: Update translationsSebastian Dröge2-263/+160
2016-10-31directsoundsrc: Correctly cast mixer to uintptrArtem Martynovich1-1/+1
https://bugzilla.gnome.org/show_bug.cgi?id=773720
2016-10-31hlsdemux: don't try to access non-existant iframe variantMichael Olbrich1-8/+10
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
2016-10-31timidity: add support for libtimidity-0.2.xsezero1-0/+4
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
2016-10-31dtls: port to OpenSSL 1.1.0Daiki Ueno2-9/+93
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
2016-10-29rawparse: pass flow returns upstreamTim-Philipp Müller1-2/+2
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.
2016-10-28build: Also need to define GST_EXPORTS for AutotoolsNirbheek Chauhan2-0/+2
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.
2016-10-28gstgl: Re-enable WINAPI on _MSC_VERNirbheek Chauhan3-25/+25
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.
2016-10-27Just remove win32/common/libgstgl.defNirbheek Chauhan1-349/+0
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.
2016-10-27plugins: Use explicit type conversion from enumsNirbheek Chauhan3-5/+7
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.
2016-10-27Explicitly define float constants as floatNirbheek Chauhan10-41/+41
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.
2016-10-27Fix incorrect return type in several functionsNirbheek Chauhan5-8/+8
All these should return GstFlowReturn, not gboolean
2016-10-27meson: Don't warn about C4146 with MSVCNirbheek Chauhan1-1/+1
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.
2016-10-27gstgl: Add GST_EXPORT to all symbols used on WindowsNirbheek Chauhan27-6/+300
This is a requirement for those symbols to be exported in gstgl-1.0.dll when building with the MSVC compiler
2016-10-27meson: Add support for building WGL on WindowsNirbheek Chauhan1-25/+34
Currently only tested with MSVC.
2016-10-27ext/gl: Don't define boolean on Windows with MSVCNirbheek Chauhan1-0/+3
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
2016-10-27gstgl: Porting fixes for MSVC with MesonNirbheek Chauhan1-1/+4
GL/gl.h needs windows.h on MSVC WINAPI should not be used with MSVC. It also causes a build error.
2016-10-23dvb/parsechannels: collapse notes on channel_name encoding conflictReynaldo H. Verdejo Pinochet1-4/+2
2016-10-23dvb/parsechannels: rename ZAP parser for clarityReynaldo H. Verdejo Pinochet1-5/+4
This function only does ZAP parsing. Additionally, remove redundant comment while at it.
2016-10-23dvb: fix gtk-doc syntax for wrongly formatted commentsReynaldo H. Verdejo Pinochet2-12/+10
2016-10-24meson: hls: Only build when any crypto_dep is foundScott D Phillips1-11/+13
https://bugzilla.gnome.org/show_bug.cgi?id=773114
2016-10-21meson: directsound: Add ole32 library dependencyScott D Phillips1-1/+1
https://bugzilla.gnome.org/show_bug.cgi?id=773114
2016-10-21meson: winscreencap depends on gstvideoScott D Phillips1-1/+1
https://bugzilla.gnome.org/show_bug.cgi?id=773114
2016-10-21meson: Remove gstreamer-check-1.0 dependencyScott D Phillips1-2/+0
It will later be added under tests/check https://bugzilla.gnome.org/show_bug.cgi?id=773114
2016-10-21glsyncmeta: don't glFinish() everytime a sync point is setMatthew Waters1-8/+5
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.
2016-10-20dash: do not use invalid stream durationThiago Santos1-1/+2
If it is is unknown, consider it infinite https://bugzilla.gnome.org/show_bug.cgi?id=768460
2016-10-20dash: properly inherit segmentlist from periodThiago Santos1-4/+9
Representation can inherit SegmentList from Period if none is available from the AdaptationSet https://bugzilla.gnome.org/show_bug.cgi?id=768460
2016-10-19meson: gl: add support for building with dispmanx on the rpiMatthew Waters6-16/+57
2016-10-18gl/eglimage: Fix passing the destroy function to gst_egl_image_new_wrappedMatthew Waters2-2/+2
The function pointer and the user data arguments were swapped in both uses. https://bugzilla.gnome.org/show_bug.cgi?id=769382
2016-10-18meson: Add missing gstvideo dep to segmentclipNirbheek Chauhan1-1/+1
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
2016-10-18Implemented gst_video_overlay_set_window_handle()Munez2-1/+20
https://bugzilla.gnome.org/show_bug.cgi?id=772608
2016-10-18meson: gl: fix detection of glx without glMatthew Waters1-1/+1
We need to check for libGL if we may use desktop OpenGL *or* GLX.
2016-10-18meson: gl: fix incorrect error stringMatthew Waters1-1/+1
Use the winsys variable for an incorrect winsys provided
2016-10-18qt: Fix failing build on RPISergey Borovkov1-0/+5
https://bugzilla.gnome.org/show_bug.cgi?id=773026
2016-10-18gl/dispmanx: egl_show should resize the window only if there is no render ↵Munez1-2/+4
rectangle set https://bugzilla.gnome.org/show_bug.cgi?id=772699
2016-10-18gl/dispmanx: Fix set_render_rectangle typoMunez1-1/+1
https://bugzilla.gnome.org/show_bug.cgi?id=772698
2016-10-17mpegtsmux: fix buffer size mismatch in M2TS modeVincent Penquerc'h1-1/+25
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.
2016-10-15meson: Don't set c_std to gnu99Nirbheek Chauhan1-1/+0
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.
2016-10-14dvbsrc: fix 'delivery system'-related messagesReynaldo H. Verdejo Pinochet1-8/+8
* Rephrase tune error to be delsys-neutral * Refer to the actual check in the 'missing sanity check' warnings * Use "Delivery system" instead of 'delsys'. The latter is OK as a shorthand in the code but not even a real word
2016-10-14bayer: fix _transform_caps method to preserve fields in given capsJoan Pau Beltran2-60/+47
https://bugzilla.gnome.org/show_bug.cgi?id=758717
2016-10-13waylandsink: Properly configure internal poolArun Raghavan1-1/+1
There was a small omission in the code. It still worked, but the pool configuration may not have been optimimal.
2016-10-12common: sync to latest revisionTim-Philipp Müller1-0/+0
Fixes accidental common change when commit patch.
2016-10-12mpegtsdemux: Implement efficient program updatesEdward Hervey3-1/+200
If the parent bin can handle it, only add/remove the new/gone stream instead of re-adding/re-moving everything https://bugzilla.gnome.org/show_bug.cgi?id=772742
2016-10-12mpegtsdemux: Ensure we always get an upstream stream-idEdward Hervey1-1/+41
This was a regression. We only have a upstream-id via STREAM_START if we were in push-mode. In pull-mode we need to create one. Note: It would be good to eventually have that method (copied from gst_pad_get_stream_id_internal()) public in the future