summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Release 1.8.01.8.0Sebastian Dröge2016-03-2476-119/+1156
|
* Update .po filesSebastian Dröge2016-03-2440-40/+40
|
* vulkan: Minor string fixThibault Saunier2016-03-231-1/+1
|
* vulkan: VK_API_VERSION has been removedMatthew Waters2016-03-231-1/+1
| | | | | | | | In a stable release too, naughty. Use VK_API_VERSION_1_0 instead https://bugzilla.gnome.org/show_bug.cgi?id=764066
* gl/proto: sync operations are available on GLES 3.0Matthew Waters2016-03-221-1/+1
| | | | | | Without the GST_GL_API_GLES2 bit set, we will not even attempt to look for the function pointers in the core library and will fallback to glFlush/glFinish.
* gl/build: add GST_GL_HAVE_DMABUF to gstglconfig.hMatthew Waters2016-03-221-1/+6
| | | | | | it's exposed in public API so hiding it in an AC_DEFINE for config.h only works when building libgstgl itself. Attempting to use libgstgl (especially on egl platforms) will throw a compilation error.
* mxfdemux: Fix query memory leakJimmy Ohn2016-03-211-0/+2
| | | | | | Peer query isn't being freed in case of GST_QUERY_SEEKING. https://bugzilla.gnome.org/show_bug.cgi?id=763974
* vulkan: Ship missing headers with tarballsSebastian Dröge2016-03-181-2/+5
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=763877
* h264parse, h265parse: fix handling of downstream force-key-unit eventsAleksander Wabik2016-03-172-4/+10
| | | | | | | | | The parser handles the downstream force-key-unit event incorrectly, it tries to parse it as an upstream force-key-unit event, does not check the return value, and then uses uninitialized memory in "all_headers" boolean variable. https://bugzilla.gnome.org/show_bug.cgi?id=763793
* glmemory: unset GL_UNPACK_ROW_LENGTH in opengl3Matthew Waters2016-03-171-1/+2
| | | | | | If the user uploads their own texture without setting the unpack length, then then the result will have the appearance of stride mismanagement due to an incorrect row length.
* gl/examples/qt: restrict the GL API to opengl where neededMatthew Waters2016-03-173-0/+9
| | | | | Until the examples are ported to opengl3/gles2, they will not work with any other GL api.
* gl/examples/gtk: call XInitThreadsMatthew Waters2016-03-177-9/+48
| | | | Fixes some sporadic X11 threading assertions.
* glutils: remove custom code for setting caps featuresMatthew Waters2016-03-171-11/+2
| | | | Just use gst_caps_set_features() instead.
* glfilter: only allow the same src/sink caps when we are in passthrough modeMatthew Waters2016-03-171-9/+25
| | | | | | | | | | | | | If we are given caps with extra features (like the overlay composition features), we can only deal with that when we are in passthrough mode. Previously we were bailing entirely and not allowing passthrough filter elements with things like textoverlay. Fixes the following pipeline (assuming glfilter supports passthrough): gl ! textoverlay ! glfilter ! ... ! glimagesinkelement https://bugzilla.gnome.org/show_bug.cgi?id=763756
* glupload: deal with the ANY caps feature correctlyMatthew Waters2016-03-171-19/+37
| | | | | | | | | | | When transforming, xplode it out into the necessary caps features both with and without the passthough features. Fixes negotiation in the following class of pipelines: gl ! textoverlay ! glupload ! glimagesinkelement https://bugzilla.gnome.org/show_bug.cgi?id=763756
* wayland: fix null pointer dereference on errorMatthew Waters2016-03-171-1/+2
| | | | | | | gnome-shell doesn't the support wl_scaler interface which makes creating a wayland display fail creation. Found in the generic state changes test
* glstereo{mix,split}: allow running on GLES 2/3Matthew Waters2016-03-172-2/+3
| | | | It's mostly supported for GLES 2.x, fully supported on GLES 3.x
* openslesringbuffer: Warn if the position reported by OpenSL is higher than ↵Sebastian Dröge2016-03-161-1/+8
| | | | | | | what we queued up so far This would hint at wrong position reporting, and apparently sometimes happens after a seek.
* mxfmux: Fix typo in JPEG2000 colorspaceSebastian Dröge2016-03-161-1/+1
| | | | sRGC -> sRGB
* Release 1.7.911.7.91Sebastian Dröge2016-03-1577-104/+578
|
* Update .po filesSebastian Dröge2016-03-1540-40/+40
|
* tsdemux: add video/x-h265 to template capsTim-Philipp Müller2016-03-121-0/+2
|
* mpegts: Don't leave freed programs in the hash tableJan Schmidt2016-03-122-0/+15
| | | | | | | | | | When the sub-class claims a program for later freeing, make sure it's not left in the hash table, or it can cause crashes on shutdown. Make sure tsdemux frees any program it has kept around at shutdown if it wasn't freed already. https://bugzilla.gnome.org/show_bug.cgi?id=763503
* videoparsers: h265: Fix segfault while transforming hevc to nal aligned ↵Sreerenj Balachandran2016-03-111-2/+11
| | | | | | | | | bytestream Create temporary ParseFrame and copy the nal size buffer region for each nal unit like we did for h264. https://bugzilla.gnome.org/show_bug.cgi?id=763494
* amc: Correctly handle NULL input buffersSebastian Dröge2016-03-114-16/+50
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=763401
* amcvideodec: getOutputBuffers() returns a NULL array when a surface was ↵Sebastian Dröge2016-03-112-3/+14
| | | | | | | | configured So don't error out if it does. https://bugzilla.gnome.org/show_bug.cgi?id=763401
* gleffects; give each effect a unique long name and descriptionMatthew Waters2016-03-112-0/+12
| | | | | | | Gives applications that scrape the factory details more detailed and unique details on the exact element. https://bugzilla.gnome.org/show_bug.cgi?id=760566
* glshader: some compatibility changes for GL 1.4Matthew Waters2016-03-102-7/+11
| | | | | | GL 1.4 (with GL_ARB_shader_objects) doesn't have glIsProgram or glIsShader equivalents. As they are simply assertions, skip them when there isn't a valid function pointer.
* glfilterapp: update for the use of shadersMatthew Waters2016-03-101-24/+36
| | | | | | Fixes black output when placed in pipelines (using the default drawing). https://bugzilla.gnome.org/show_bug.cgi?id=763365
* glfilter: retrieve the shader attributes from the GL threadMatthew Waters2016-03-102-18/+26
| | | | | | Otherwise we will receive bogus values https://bugzilla.gnome.org/show_bug.cgi?id=763365
* gl/examples/cube*: choose opengl by defaultMatthew Waters2016-03-102-16/+16
| | | | | | The examples don't work with any other GL API. Also fix the yuv example to not translate the cube out of the clipping area.
* gl/examples/fxtest: add needed glupload to the pipelineMatthew Waters2016-03-101-3/+4
| | | | Fixes a negotiation failure in the example
* mpegvideoparser: Handle non-hierarchical profiles againEdward Hervey2016-03-093-11/+16
| | | | | | | | | | | | | This is a regression from since mpegvideoparser was switched to use the codecparsing library. The problem is that the high bit of the profile_and_level is used to specify non-hierarchical profiles and levels. Unfortunately we were discarding that information. Expose that escape bit, and use it in the element https://bugzilla.gnome.org/show_bug.cgi?id=763220
* glimagesink: Fix window memory leakVineeth TM2016-03-091-0/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=763356
* tsdemux: Don't reset/recalculate segments with accurate seeksEdward Hervey2016-03-081-3/+4
| | | | | | | When dealing with accurate seeks, we must send out a segment which is exactly what is requested. https://bugzilla.gnome.org/show_bug.cgi?id=763262
* glvideomixer: signal continuation in resetMatthew Waters2016-03-081-1/+1
| | | | | | | | We want to iterate over all the pads, not just the first one. Fix by returning TRUE in the GstAggregatorPadForeachFunc. Removes a GST_IS_GL_CONTEXT() assertion on shutdown with >2 inputs using gst-launch.
* gldisplay: make readding the same context a no-opMatthew Waters2016-03-082-1/+100
| | | | | | | | | With e38af2304427db908a16bbae0e60aa68be1ba5b5 returning the correct contexts, gst_gl_display_add_context() was susceptible to causing infinte loops when adding the same GstGLContext more than once. Fix and add a test for gst_gl_display_add_context(). Fixes glvideomixer gst-validate tests.
* Revert "libgstgl: cocoa, eagl: don't marshal GL calls to the context thread"Sebastian Dröge2016-03-076-116/+3
| | | | | | This reverts commit 797d6415dfd6e111efb2cab544958a67cbf22b17. We're frozen for 1.8.0 release and this change might have bigger impact.
* libgstgl: cocoa, eagl: don't marshal GL calls to the context threadAlessandro Decina2016-03-076-3/+116
| | | | | | | | | | | | Execute GL calls without marshalling them to the context thread. In the cocoa and eagl backends calling gst_gl_context_activate is cheap and therefore calling it on the current thread and serializing GL calls with a per-context lock is more efficient (faster and has less overhead) than marshalling everything to the context thread. This optimization cuts a large overhead in g_poll (continuously waking up the context thread) and in g_mutex_*/g_cond_* (waiting for results from the context thread).
* gldisplay: really retrieve glcontext for a specific threadMark Nauwelaerts2016-03-061-1/+4
| | | | | | | | When requesting a glcontext (regardless of thread), the result was correct. However, when requesting current glcontext on a specific thread, it could come up with a glcontext active on another thread. https://bugzilla.gnome.org/show_bug.cgi?id=763168
* gl: misc docs fixes/additionsMatthew Waters2016-03-0618-32/+231
|
* gl*memory: document new functionality and objectsMatthew Waters2016-03-0610-41/+503
|
* docs: add new GL api to .types file for type/signal introspectionMatthew Waters2016-03-061-0/+3
|
* docs: ignore some private GL headersMatthew Waters2016-03-061-1/+3
|
* docs/gl: add gl functions/structs from -unused into the docsMatthew Waters2016-03-062-43/+289
|
* glfilter: handle some more unfixed fields when fixating capsMark Nauwelaerts2016-03-051-2/+14
|
* gtk: examples: #define GST_USE_UNSTABLE_API and link with X11_LIBSSebastian Dröge2016-03-051-4/+8
| | | | | X11_LIBS is needed for XInitThreads() and without the #define we get warnings about the GL API being still unstable.
* androidmedia: Remove unused fileJustin Kim2016-03-051-68/+0
| | | | | | ahcsrc is registered by gstamc.c https://bugzilla.gnome.org/show_bug.cgi?id=763098
* amc: properly deinit when ahcsrc register failsMartin Kelly2016-03-041-6/+11
| | | | | | | | | | In the androidmedia plugin_init, we initialize various resources on the Android device. If anything fails during this series of initializations, we need to deinitialize any initializations that already occurred. However, we don't do so if we fail to register the ahcsrc element. Fix this. https://bugzilla.gnome.org/show_bug.cgi?id=763065
* ahc: correct error messageMartin Kelly2016-03-041-1/+2
| | | | | | | | The error message is specific to only one of the failure cases and is misleading in the others. Correct it to be more generic and cover all the failure cases. https://bugzilla.gnome.org/show_bug.cgi?id=763065