summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* build: Release 2.99.22.99.2Lionel Landwerlin2014-06-093-1/+28
|
* doap: add 2.0 releasesLionel Landwerlin2014-06-091-0/+20
|
* types: add missing Since declarationsLionel Landwerlin2014-06-091-0/+10
|
* pc: add missing gstreamer-video-1.0 dependencyLionel Landwerlin2014-06-091-1/+1
|
* aspectratio: fix aspect ratio with fill_allocation caseLionel Landwerlin2014-06-091-4/+4
|
* content: fix return descriptionLionel Landwerlin2014-06-091-1/+1
|
* playback: silent unused variables warningsLionel Landwerlin2014-06-091-9/+1
|
* util: fix wrong type link in commentLionel Landwerlin2014-06-091-1/+1
|
* camera-manager: mark class/instance internals as privateLionel Landwerlin2014-06-092-0/+3
|
* doc: add Clutter as dependencyLionel Landwerlin2014-06-091-0/+1
|
* doc: add video sink chapterLionel Landwerlin2014-06-091-0/+9
|
* doc: add missing symbolsLionel Landwerlin2014-06-091-0/+15
|
* video-sink: fix documentation sectionLionel Landwerlin2014-06-091-2/+2
|
* video-sink: subclass GstVideoSink rather than GstBaseSinkLionel Landwerlin2014-06-092-4/+14
|
* Revert "VAAPI DEBUG"Lionel Landwerlin2014-06-072-31/+3
| | | | This reverts commit 95c7751a7c4ef44fc1c2345e75e8cec10385fb4d.
* VAAPI DEBUGLionel Landwerlin2014-06-072-3/+31
|
* sink: position RGBA GL upload as first capLionel Landwerlin2014-06-071-9/+9
|
* contents: add overlay supportLionel Landwerlin2014-06-074-65/+412
|
* video-sink: add overlay supportLionel Landwerlin2014-06-076-17/+296
|
* utils: remove deprecation warningLionel Landwerlin2014-06-071-5/+6
|
* auto-video-sink: rename to avoid GType name conflict with 2.0 versionLionel Landwerlin2014-06-022-21/+20
|
* introspection: use same pkg as compile flagsLionel Landwerlin2014-06-021-1/+1
|
* plugin: add debug category for video sinkLionel Landwerlin2014-06-021-0/+5
|
* ClutterGstFrame: copy pipeline instead of taking refLionel Landwerlin2014-06-011-1/+1
| | | | | This is important if a video frame is painted in multiple actors with different opacities.
* documentation: add video sinkLionel Landwerlin2014-06-011-0/+10
|
* content: add some padding to classLionel Landwerlin2014-06-013-0/+6
|
* introspection: do not depend on Cogl 2.0 API as Clutter hasn't switched yetLionel Landwerlin2014-05-281-2/+2
|
* video-sink: add gl texture upload supportLionel Landwerlin2014-05-281-4/+84
|
* Drop Cogl-Gst dependency and reimport video sinkLionel Landwerlin2014-05-2821-193/+2680
|
* clutter-gst: do not hardcore libtool pathLionel Landwerlin2014-04-221-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=728484
* doap: update URLsPiotr Drąg2014-03-301-4/+4
|
* fix automake warningsLionel Landwerlin2014-02-122-6/+6
|
* tests, examples: fix LDFLAGS vs LDADD useRyan Lortie2014-02-122-8/+8
| | | | | | | | Extra libraries to link belong in LDADD, not LDFLAGS. This fixes the build under jhbuild on FreeBSD. https://bugzilla.gnome.org/show_bug.cgi?id=724189
* configure.ac: fix compilation following cogl 2.0 pc file renameLionel Landwerlin2014-01-202-3/+3
|
* build: Adapt to cogl-gst-2.0-experimental renameColin Walters2014-01-201-1/+1
| | | | See https://git.gnome.org/browse/cogl/commit/?h=c2130e95560fbf53e75bd1e6c435c41a6af61a99
* plugin: change plugin name to coexist with clutter-gst 2.0Lionel Landwerlin2013-12-191-1/+1
|
* plugin: use coglsink template sink as template sinkLionel Landwerlin2013-11-291-3/+11
|
* build: Post release bump to 2.99.1Lionel Landwerlin2013-11-191-1/+1
|
* build: Release 2.99.02.99.0Lionel Landwerlin2013-11-192-0/+52
|
* doap: add new releasesLionel Landwerlin2013-11-191-0/+30
|
* configure.ac: bump Clutter dependencyLionel Landwerlin2013-11-192-5/+3
|
* plugin: return error on state change if Clutter is not initializedLionel Landwerlin2013-11-191-9/+7
|
* clutter-gst-playback: fix comment typoLionel Landwerlin2013-11-191-5/+6
|
* video-player: By default use download bufferingSjoerd Simons2013-11-181-3/+2
| | | | | | Using download buffering by default is always safe to do for non-local sources. Gstreamer will automatically fallback to stream buffering if download buffering isn't possible or suitable for the remote media
* ClutterGstPlayback: Rework the download buffering modeSjoerd Simons2013-11-183-165/+187
| | | | | | | | | | | | | | | | | | | | | The current implementation of CLUTTER_GST_BUFFERING_MODE_DOWNLOAD didn't actually do any real useful buffering. When using download buffering ideally one downloads enough of the remote file to disk such that when playback start the full file can be played without buffering again. This patch changes the download buffering codepaths to keep buffering (by default) until the remaining playback time is about 10% longer then the remaining download time. I've also added a signal which an application can hook into to change the default policy. Once initial buffering is done, the pipeline will only start buffering again when the low threshold from queue2 is hit (e.g. we misestimated and we can't continue until we buffer again) or when the user seeks (at which point we need to re-evaluate the situation). The changes done in this patch also decouple the pipeline target state from the api visible target state. This prevents the user from forcing the pipeline out of buffering by hitting pause, play.
* ClutterGstPlayback: implement a method to get position in secondsSjoerd Simons2013-11-182-0/+31
|
* Leave selection of audiosink to playbinSjoerd Simons2013-11-181-17/+0
| | | | | | | gconfaudiosink has been deprecated a while ago, so clutter-gst example probably shouldn't use that. >eaving playbin to select the audiosink should just do the right thing on all platforms, so we can simply remove the audio sink selection code.
* plugin: make 3.0 plugin parallel installable with 2.0 pluginLionel Landwerlin2013-11-151-4/+4
|
* doc: Set DOC_MODULE_VERSIONMarvin Schmidt2013-11-152-1/+2
| | | | | This will avoid file collisions with future API versions and makes different API versions completely parallel installable
* video-player: Listen to the right object for buffer-fill signalsSjoerd Simons2013-11-151-1/+1
|