summaryrefslogtreecommitdiff
path: root/tests/test-alpha.c
Commit message (Collapse)AuthorAgeFilesLines
* memory leaks at loggingVíctor Manuel Jáquez Leal2015-05-091-1/+4
| | | | | | | | | | | | The function gst_caps_to_string () return a new allocated string that should be free. Some logging instructions use that function without freeing the allocated string. This patch replaces the function with GST_PTR_FORMAT magic, and in the case of the tests, the free() is added. https://bugzilla.gnome.org/show_bug.cgi?id=744326
* tests: remove warningsLionel Landwerlin2014-12-061-2/+0
|
* content: rename video-sink property to sinkLionel Landwerlin2014-12-061-1/+1
|
* Drop Cogl-Gst dependency and reimport video sinkLionel Landwerlin2014-05-281-1/+0
|
* switch ClutterGst to use ClutterContentLionel Landwerlin2013-07-081-52/+11
|
* introduce ClutterGstPipeline to allow custom Gstreamer pipelines to feed ActorsLionel Landwerlin2013-04-251-15/+19
|
* Do not use deprecated ClutterTexture.Andre Moreira Magalhaes (andrunko)2013-03-181-22/+17
| | | | | | | | - Remove ClutterGstVideoTexture to be replaced by ClutterGstVideoActor. - Make cluttersink/autocluttersink gstreamer elements accept a ClutterGstActor instead of a ClutterTexture for painting. - This patch temporarily disable examples/video-player and some tests requiring ClutterGstVideoTexture.
* remove most of remaining Clutter deprecation warningsLionel Landwerlin2013-01-311-10/+22
| | | | Apart from ClutterMedia/ClutterTexture because that would break API.
* remove usage of ClutterContainerLionel Landwerlin2013-01-301-1/+2
|
* remove clutter_stage_get_default() callsLionel Landwerlin2013-01-301-1/+1
|
* port to GStreamer 1.0Edward Hervey2012-07-121-6/+5
| | | | Contributions from: Alban Browaeys <prahal@yahoo.com>
* tests, examples: switch to new API to instantiate the videosinkJosep Torra2011-11-021-1/+2
| | | | | Change the application related code to use the new preferred API to create the sink.
* build: Fix missing #include <stdlib.h> for EXIT_SUCCESS/_FAILUREDamien Lespiau2010-09-231-0/+1
|
* video-texture: Respect the pixel aspect ratio of the incoming framesDamien Lespiau2010-09-161-1/+0
| | | | | | | | | | | Video frames come with a pixel-aspect-ratio cap that tells the sink what should be the final size of the video. This information is now given to ClutterGstVideoTexture that derives the preferred width and height based on the base size of the frames and that pixel-aspect-ratio. A new debug category "aspect-ratio" has been created to trace what
* [misc] size-change signal signature uses gintsDamien Lespiau2009-09-071-2/+2
| | | | | | During a short periode it used gfloats for the texture size, but got reverted to gints shortly after. I forgot to update the signal signature.
* [tests] Extends test-alpha with RGB videosDamien Lespiau2009-09-051-5/+22
| | | | It just works.
* [tests] Add an alpha testDamien Lespiau2009-09-051-0/+194
The purpose of this test is to verify that we can now blend a video into a scene using the glColor of underlying actor.