summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* alaw/mulaw: Implement _getcaps function for alaw/mulaw decodersOlivier Crete2009-02-222-0/+108
| | | | Fixes bug #572358.
* alaw/mulaw: Don't require both, rate and channel, to be set in _getcapsOlivier Crete2009-02-222-24/+20
| | | | Fixes bug #572358.
* avidemux: Fix alignment issues by using GST_READ_*Sebastian Dröge2009-02-221-5/+5
| | | | | | | | Reading integers from random memory addresses will result in SIGBUS on some architectures if the memory address is not correctly aligned. This can happen at two places in avidemux so we should use GST_READ_UINT32_LE and friends here. Fixes bug #572256.
* pulsemixer: Don't use g_atomic_int_(get|set) for accessing the mixer track flagsSebastian Dröge2009-02-221-9/+12
| | | | | | | | | | | | | | | | | | | | g_atomic_int_(get|set) only work on ints and the flags are an enum (which on most architectures is stored as an int). Also the way the flags were accessed atomically would still leave a possible race condition and we don't do it in any other mixer track implementation, let alone at any other place where an integer could be changed from different threads. Removing the g_atomic_int_(get|set) will only introduce a new race condition on architectures where integers could be half-written while reading them which shouldn't be the case for any modern architecture and if we really care about this we need to use g_atomic_int_(get|set) at many other places too. Apart from that g_atomic_int_(set|get) will result in aliasing warnings if their argument is explicitely casted to an int *. Fixes bug #571153.
* Automatic update of common submoduleJan Schmidt2009-02-221-0/+0
| | | | From 5d7c9cc to 9cf8c9b
* hdv1394src: Don't use void * pointer arithmeticSebastian Dröge2009-02-221-1/+1
|
* Automatic update of common submoduleDavid Schleef2009-02-211-0/+0
| | | | From 80c627d to 5d7c9cc
* Back to development -> 0.10.14.1Jan Schmidt2009-02-211-1/+1
|
* respect DEFAULT segment by clipping the last buffer to be sentThomas Vander Stichele2009-02-211-0/+11
|
* Release 0.10.14Jan Schmidt2009-02-1973-3097/+3353
|
* Update .po filesJan Schmidt2009-02-1932-150/+124
|
* Update Since: tags in autodetect srcs and audioechoJan Schmidt2009-02-193-3/+3
|
* Update ChangeLog for 0.10.13.3Jan Schmidt2009-02-191-0/+81
|
* 0.10.13.3 pre-releaseJan Schmidt2009-02-192-4/+4
|
* pulsemixer: Fix compiler warnings.Mark Nauwelaerts2009-02-131-6/+6
| | | | | Cast (enum *) to (int *), not necessarily technically right, but plugs #571153.
* pulsesink: Issue property change notification in streaming thread,Mark Nauwelaerts2009-02-132-6/+9
| | | | | | | | | rather than PA thread. pa_threaded_mainloop_lock() (a.o.) and by extension get_property should not be done from a PA thread, but the latter may occur as a result of a property change notification. Fixes #571204 (though current situation not ideal, e.g. post message rather than signal).
* aspectratiocrop: Don't forget to call parent finalize implementation.Edward Hervey2009-02-101-0/+2
| | | | This fixes a memory leak (leaking the contained elements of the bin).
* osxvideosink: Fix build. Fixes #571038Edward Hervey2009-02-101-8/+7
|
* Bump revision to use for common submodule.Edward Hervey2009-02-091-0/+0
|
* ChangeLog: Update ChangeLog for 0.10.13.2Jan Schmidt2009-02-071-17631/+30875
|
* po: Update translations for 0.10.13.2Jan Schmidt2009-02-0732-2255/+2374
|
* Release 0.10.13.2Jan Schmidt2009-02-072-4/+4
|
* po: Add Maltese translationJan Schmidt2009-02-072-1/+399
|
* qtdemux: Add handling for stps atomsDavid Schleef2009-02-065-0/+44
| | | | | | stps atoms contain "partial sync" information, which means that it's a sync point where pts != dts. This is needed to properly handle MPEG2, H.264, Dirac, etc., in quicktime.
* flacdec: if we aborted reading, don't do into an infinite loop.Michael Smith2009-02-051-0/+7
| | | | | If our read callback ran out of data, so had to abort reading, we return GST_FLOW_ERROR instead of going into an infinite loop.
* osxvideosink: remove non-embedded mode and fix memory management.Michael Smith2009-02-052-349/+66
| | | | | | | Remove non-embedded mode. Embed mode becomes default and only mode. embed property is retained for binary compatibility. Added autorelease pools around all objc functions that might be called from a non-main thread.
* debug on the objectThomas Vander Stichele2009-02-051-26/+35
|
* osxaudio fixes: multichannel and changing caps.Michael Smith2009-02-041-4/+7
| | | | | | | Ensure we create the ringbuffer segment size as a multiple of the bytes per sample (fixes 6-channel output). Reset the segoffset when acquiring the ringbuffer, so we don't retain a bogus offset when caps change.
* rtspsrc: Keep track of connected stateWim Taymans2009-02-042-11/+15
| | | | | Keep track of the state of the connection and don't try to send TEARDOWN when the server has closed the connection.
* Read Matroska Title element for the TITLE tagRobin Stocker2009-02-041-1/+15
| | | | | | | Not all Matroska files have a Tags element which contains information about the title among other things. Most video Matroska files only contain the Title element so we should parse this too. Fixes bug #570435.
* configure.ac: bump core/base requirements to released versionsTim-Philipp Müller2009-02-031-2/+2
|
* Fix audioecho unit test on 32 bit systemsSebastian Dröge2009-02-031-6/+6
| | | | | | Cast the new value for the "delay" property to GstClockTime. Integers without type are passed to vararg functions with an integer type that can hold a pointer.
* equalizer: Don't reset frequency bands from user settings. Fixes #570343.Stefan Kost2009-02-031-18/+20
| | | | | | Move reallocating the history buffer out of _compute_frequencies() and call the right function as needed. Add some logging and tweak the formatting of existing logging. Simplify setting need_new_coefficients when changing properties.
* Use guint64 instead of guint for storing guint64Sebastian Dröge2009-02-031-3/+2
|
* Use correct flag for the GNOME proxy configurationJonathan Matthew2009-02-021-1/+1
| | | | Fixes bug #552140.
* Fix compiler warningsWim Taymans2009-02-021-18/+20
| | | | fix compiler warnings due to unused return values of scanf.
* Fix format string compiler warningSebastian Dröge2009-01-311-2/+1
|
* Add releaseinfo with online url.Stefan Kost2009-01-301-0/+5
|
* Fix up some compile flagsJan Schmidt2009-01-302-3/+3
|
* Don't use Glib 2.16 function g_strcmp0.Jan Schmidt2009-01-301-3/+3
|
* Don't do void pointer arithmeticJan Schmidt2009-01-301-5/+5
|
* Fix Forte compiler warnings.Jan Schmidt2009-01-302-7/+7
| | | | Don't do void pointer arithmetic. Don't have an unreachable statement.
* Bump commonJan Schmidt2009-01-301-0/+0
|
* Remove useless processing for non-raw formatsEdward Hervey2009-01-301-10/+8
|
* Add support for the 'Requirement' and 'Encoder' tagsEdward Hervey2009-01-303-1/+6
|
* Modify private-tag name formatter so that it doesn't go mad at fourcc ↵Edward Hervey2009-01-301-2/+3
| | | | starting with '(c)'.
* Fix comparison of the tuner normsBrijesh Singh2009-01-301-1/+1
| | | | | | | | | | The V4L2 tuner norms that a device supports could be a subset of some norm (e.g. NTSC instead of NTSC_M). The comparison should be done by & instead of ==. See http://www.linuxtv.org/downloads/video4linux/API/V4L2_API/spec-single/v4l2.html#STANDARD Fixes bug #569820.
* Use a symbolic link for the pre-commit client-side hookEdward Hervey2009-01-302-3/+3
|
* Only unref the peer when there is one.Thijs Vermeir2009-01-291-1/+1
|
* Remove version numbers from a few gst-launch examples.Stefan Kost2009-01-298-13/+13
| | | | The majority of the examples doe not use -0.10 and this will also help us to maintain the docs.