summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-09-03Release 0.10.20RELEASE-0.10.20Tim-Philipp Müller8-2814/+6502
2010-09-03docs: update for releaseTim-Philipp Müller108-280/+275
2010-09-03po: update translationsTim-Philipp Müller5-1/+907
2010-09-03doap: reference git repository instead of CVS repositoryTim-Philipp Müller1-5/+4
2010-09-02rtmpsrc: fix wrong use of GST_ELEMENT_ERRORTim-Philipp Müller1-1/+1
2010-08-300.10.19.5 pre-releaseSebastian Dröge39-49/+109
2010-08-30camerabin: Don't install gst-camera.uiSebastian Dröge1-2/+1
The examples are not meant to be installed and the executables of them are not installed anyway. Fixes bug #627918.
2010-08-30rtpmux: Unlock the right mutexYouness Alaoui1-1/+1
The mutex locked is for the 'mux' object, but we unlock the pad, which means that if the rtpmux gets a flush, then the object lock will stay locked forever, causing it to freeze the next time it tries to take it. Fixes bug #627991
2010-08-30configure: Bump neon requirement to 0.27.0Jan Schmidt1-1/+1
Needed in order to have ne_set_connect_timeout Fixes bug #625076
2010-08-210.10.19.4 pre-releaseSebastian Dröge42-2370/+2812
2010-08-21qtmux: autodetect out-of-order input timestamps and determine DTS accordinglyMark Nauwelaerts1-12/+56
Favour using input buffer timestamps for DTS, but fallback to using buffer duration (accumulation) if input ts detected out-of-order. Fixes #624212.
2010-08-21jifmux: Avoid recombining RGB jpegsThiago Santos1-0/+38
JFIF only allows YUV as colorspace, when we receive an RGB jpeg, we should just push it forward without adding the JFIF marker. Fixes #627413
2010-08-19vp8dec: Set GstBaseVideoDecoder::packetized to TRUE as soon as possiblePhilip Jägenstedt1-1/+3
This fixes an infinite loop if an EOS event is received before GstBaseVideoDecoder::start() is called, e.g. immediately when the pads are activated. Fixes bug #626815.
2010-08-13Automatic update of common submoduleStefan Kost1-0/+0
From 3e8db1d to ec60217
2010-08-12gaudieffects: Mark inline functions as static inlineOlivier Crête2-4/+4
Otherwise it fails to correctly link them in some cases. https://bugzilla.gnome.org/show_bug.cgi?id=626670
2010-08-110.10.19.3 pre-releaseTim-Philipp Müller111-118/+204
2010-08-11gsettings: fix make distcheckTim-Philipp Müller1-0/+2
Clean up file we generated at build time.
2010-08-11checks: blacklist gsettings* elements for generic/states testTim-Philipp Müller1-1/+1
When the test is run, the schema file won't be installed yet, and there doesn't seem to be an environment variable to set to force GSettings to look in a different directory. https://bugzilla.gnome.org/show_bug.cgi?id=626603
2010-08-110.10.19.2 pre-releaseTim-Philipp Müller109-2242/+965
This commit is out of sequence, it really belongs between commits 15098331412ceb982c24b89bb4346354fb56433c (Automatic update of common submodule) and dd26f378b01d679834f12935efc7093fb5807956 (configure: Fix the CELT checks to ...)
2010-08-11configure: bump core/base requirement to released versionsTim-Philipp Müller1-2/+2
This commit is out of sequence, it really belongs between commits 15098331412ceb982c24b89bb4346354fb56433c (Automatic update of common submodule) and dd26f378b01d679834f12935efc7093fb5807956 (configure: Fix the CELT checks to ...)
2010-08-11configure: fix --disable-externalTim-Philipp Müller1-0/+1
This commit is out of sequence, it really belongs between commits 15098331412ceb982c24b89bb4346354fb56433c (Automatic update of common submodule) and dd26f378b01d679834f12935efc7093fb5807956 (configure: Fix the CELT checks to ...)
2010-08-11checks: skip jifmux tests if required elements aren't availableTim-Philipp Müller1-18/+12
This commit is out of sequence, it really belongs between commits 15098331412ceb982c24b89bb4346354fb56433c (Automatic update of common submodule) and dd26f378b01d679834f12935efc7093fb5807956 (configure: Fix the CELT checks to ...)
2010-08-11legacyresample: Link against $(LIBM) for rint() and friendsSebastian Dröge1-1/+1
2010-08-11gsettings: Add gsettings.m4 for the gsettings macrosSebastian Dröge1-0/+93
2010-08-11invtelecine: Link against $(LIBM) for sqrt() and friendsSebastian Dröge1-1/+2
2010-08-11configure: Fix the CELT check to actually succeed if CELT >= 0.5 is availableSebastian Dröge1-3/+6
Also remove the AC_MSG_RESULTS([no]), pkg-config does this for us already.
2010-08-10Automatic update of common submoduleTim-Philipp Müller1-0/+0
From bd2054b to 3e8db1d
2010-08-09geometrictransform: add a "zoom" parameter to square filterFilippo Argiolas2-2/+23
https://bugzilla.gnome.org/show_bug.cgi?id=625908
2010-08-09geometrictransform: make square "width" and "height" customizableFilippo Argiolas2-2/+91
https://bugzilla.gnome.org/show_bug.cgi?id=625908
2010-08-09geometrictransform: add a "mode" property to mirror filterFilippo Argiolas2-14/+130
Add a "mode" enum property to mirror that defines how to split the frame and with side reflect. https://bugzilla.gnome.org/show_bug.cgi?id=625908
2010-08-09geometrictransform: add a "zoom" parameter to bulge filterFilippo Argiolas2-6/+81
Rework bulge mapping function to give more predictable results. Now the bulge is done dividing by a scale factor that smoothsteps from "zoom" at the center to 1.0 at "radius". https://bugzilla.gnome.org/show_bug.cgi?id=625908
2010-08-09geometrictransform: add an "intensity" parameter to stretch filterFilippo Argiolas2-3/+79
https://bugzilla.gnome.org/show_bug.cgi?id=625908
2010-08-09geometrictransform: make tunnel "radius" customizableFilippo Argiolas1-6/+5
https://bugzilla.gnome.org/show_bug.cgi?id=625908
2010-08-09geometrictransform: make bulge "radius" customizableFilippo Argiolas1-5/+4
https://bugzilla.gnome.org/show_bug.cgi?id=625908
2010-08-09geometrictransform: make stretch "radius" customizableFilippo Argiolas1-12/+4
https://bugzilla.gnome.org/show_bug.cgi?id=625908
2010-08-09vdpaumpeg4dec: fix typo in default_non_intra_quant_matrixCarl-Anton Ingmarsson1-1/+1
2010-08-09vdpau: add mpeg4 part2 decoderCarl-Anton Ingmarsson8-2/+1374
2010-08-08checks: skip id3mux unit tests that need id3demux if id3demux is not availableTim-Philipp Müller1-18/+9
2010-08-08configure: build and dist new coloreffects pluginTim-Philipp Müller1-2/+3
Fixes make distcheck.
2010-08-08frei0r: Only check the plugin filenames, not the directory namesSebastian Dröge1-7/+8
2010-08-08frei0r: Don't try to register/load the same frei0r plugin at different ↵Sebastian Dröge1-11/+27
locations twice This could happen because for example /usr/lib is linked to /usr/lib64 and both are loaded. The frei0r specification says that the plugin init function must only be called once and for some plugin weird things (including crashes) are happening. Fixes bug #623710.
2010-08-06dvbsrc: align actual default values for properties with defaults in param specTim-Philipp Müller2-46/+65
https://bugzilla.gnome.org/show_bug.cgi?id=621404
2010-08-06vdpau: fix destruction of GstVdpDevice when it failed to openCarl-Anton Ingmarsson2-6/+4
only close display in finalize and check if vdp_decoder_destroy is available before we use it
2010-08-06vdpausink: use separate mutex for device lockingCarl-Anton Ingmarsson2-7/+22
we can't use GST_OBJECT_LOCK since that cause problems when we try to post errors, due to gst_element_post_message also taking the GST_OBJECT_LOCK
2010-08-06neonhttpsrc: add connect-timeout and read-timeout propertiesDavid Hoyt2-0/+54
https://bugzilla.gnome.org/show_bug.cgi?id=625076
2010-08-06neonhttpsrc: add "cookies" propertyTim-Philipp Müller3-0/+39
Based on patch by: Sameer Naik https://bugzilla.gnome.org/show_bug.cgi?id=625174
2010-08-06dshowvideosink: close our own window when changing the window idAndoni Morales Alastruey1-3/+10
If we created the window, it needs to be closed after setting a new window id. https://bugzilla.gnome.org/show_bug.cgi?id=574290
2010-08-06dshowvideosink: allow changing window ID whilst in PLAYING stateRaimo Jarvi1-1/+17
https://bugzilla.gnome.org/show_bug.cgi?id=574290
2010-08-06frei0r: Load plugins in /usr/{local/,}lib{32,64}/frei0r-1 tooOlivier Crête1-1/+7
Loads the plugins in more paths where they could be installed by multilib distributions. Fixes #623710
2010-08-05Automatic update of common submoduleStefan Kost1-0/+0
From a519571 to bd2054b