summaryrefslogtreecommitdiff
path: root/examples/video-sink.c
Commit message (Collapse)AuthorAgeFilesLines
* examples: fix video-sinkLionel Landwerlin2014-12-061-28/+21
|
* fix compilation warnings all over the placeLionel Landwerlin2013-07-221-1/+1
|
* remove ClutterGstActor now replaced by ClutterGstContentLionel Landwerlin2013-07-221-5/+7
|
* Break API and concepts around VideoTextureLionel Landwerlin2013-03-181-24/+23
|
* Do not use deprecated ClutterTexture.Andre Moreira Magalhaes (andrunko)2013-03-181-17/+12
| | | | | | | | - 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-2/+2
| | | | Apart from ClutterMedia/ClutterTexture because that would break API.
* remove clutter_stage_get_default() callsLionel Landwerlin2013-01-301-1/+1
|
* video-sink* examples: Port to gstreamer 1.0.Andre Moreira Magalhaes (andrunko)2012-09-251-2/+2
|
* 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.
* examples: include stdlib.h for EXIT_{SUCCESS,FAILURE}Damien Lespiau2011-06-061-0/+2
|
* examples: consistently use exit codesØyvind Kolås2011-06-061-5/+6
|
* examples: bail if clutter_init failsØyvind Kolås2011-06-061-1/+5
| | | | Never gcc is stricter about discared return values.
* style: Remove trailing spacesDamien Lespiau2011-03-251-4/+4
| | | | | I wonder how I could survive before noticing how much trailing white space the repository had.
* 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.
* [misc] Pass on the c files headersDamien Lespiau2009-06-231-0/+26
| | | | | * Be sure to include licensing information * Update the Copyright assignment when needed
* Removed mipmapping of yv12 component planes.Øyvind Kolås2009-06-051-1/+1
| | | | | The way this is done no longer works with clutter master. Also updated creation of timeline in example to newer API.
* Finishes the port of all the examples/tests to 1.0 APIDamien Lespiau2009-05-221-15/+20
|
* Fix an __attribute__ ((sentinel)) warningDamien Lespiau2009-03-281-1/+1
| | | | | Since version 4.0, gcc has a nice attribute that can make the compiler moan if a variadic function is not terminated by NULL.
* * examples/video-sink.c (main):Chris Lord2008-07-161-2/+2
| | | | Update 'tiled' to 'disable-slicing'
* 2007-11-22 Zeeshan Ali Khattak <zeenix@gstreamer.net>Emmanuele Bassi2007-11-231-2/+0
| | | | | | | | | | * clutter-gst/clutter-gst-video-sink.c: Use async queue with idle function instead of messages on the bus with signal handlers to allow the application thread to actually render the frames. (#644) * examples/video-sink.c: Remove the now unneeded call to gst_bus_add_signal_watch().
* 2007-07-06 Emmanuele Bassi <ebassi@openedhand.com>Emmanuele Bassi2007-07-061-1/+1
| | | | | | | | | | | | | | | | | | * configure.ac: Use the same M4 macros clutter-core uses to set the various libtool flags and simplify the release process. * clutter-gst/clutter-gst.h: * clutter-gst/clutter-gst-version.h.in: Add version header and macros for clutter-gst. * clutter-gst/*.[ch]: Fix copyright and attributions. * clutter-gst/clutter-gst-util.[hc]: Fix second argument of clutter_gst_init() function call: the underlying libraries require a pointer to the arguments vector to remove their own arguments from it. * README: Flesh out the description a little.
* 2007-06-22 Matthew Allum <mallum@openedhand.com>Matthew Allum2007-06-221-9/+7
| | | | | | | | | | | | | | | | | | | | * configure.ac: Bump up to use Clutter 0.3 (trunk) * clutter-gst/clutter-gst-video-sink.c: Improve caps usage and switch to BGRA data, taking advantage of newer texture api and thus giving an alpha channel to video textures. Collect pixel aspect ratio info but do not expose as yet. * clutter-gst/clutter-gst-video-texture.c: Minor change to object creation. * examples/Makefile.am: * examples/audio.c: * examples/video-player.c: * examples/video-sink.c: Update for 0.3 API
* 2007-04-26 Matthew Allum <mallum@openedhand.com>Matthew Allum2007-04-261-0/+101
* clutter-gst/Makefile.am: * clutter-gst/clutter-gst-util.c: * clutter-gst/clutter-gst-util.h: * clutter-gst/clutter-gst.h: Add a clutter_gst_init() call mainly for binding usage. * clutter-gst/clutter-gst-video-sink.c: * clutter-gst/clutter-gst-video-sink.h: * clutter-gst/clutter-gst-video-texture.c: * examples/Makefile.am: * examples/README: * examples/video-sink.c: Addition of clutter texture gstreamer video sink from Jonathan Matthew (#296)