summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* various (ext): add missing G_PARAM_STATIC_STRINGS flagsStefan Kost2010-10-1948-301/+452
| | | | Canonicalize property names as needed.
* videoanalyse: fix copy'n'paste off by one for param spec flags changeStefan Kost2010-10-191-1/+1
|
* various (gst): add missing G_PARAM_STATIC_STRINGS flagsStefan Kost2010-10-1956-206/+312
| | | | Canonicalize property names as needed.
* various: wrap property registration and add a single fixme for long desc.Stefan Kost2010-10-194-20/+54
|
* pnmenc: remove stray " in doc commentStefan Kost2010-10-191-1/+1
|
* dtmfsrc: remove DEBUG_FUNCPTR from gobject vmethodsStefan Kost2010-10-191-3/+3
|
* tests: jifmux: Adds tests for the new tagsThiago Santos2010-10-181-4/+128
| | | | Adds tests for the new exif tags in -base
* basevideo: Move common fields/functions to basecodecDavid Schleef2010-10-1510-220/+250
|
* zbar: Make scanner cache optionalKaj-Michael Lang2010-10-142-5/+23
|
* photography: actualy use the enum in the vmethodsStefan Kost2010-10-141-2/+2
| | | | | If we introduce a new GstPhotographyNoiseReduction, lets also use it in the vmethods
* photography: retab interface struct fieldsStefan Kost2010-10-141-26/+26
|
* Automatic update of common submoduleDavid Schleef2010-10-141-0/+0
| | | | From 5a668bf to 7bbd708
* camerabin: Remove unused entryThiago Santos2010-10-141-1/+0
| | | | Remove camerabin unused enum entry
* photography: Avoid breaking ABIThiago Santos2010-10-141-5/+6
| | | | Move the newly added functions/fields to the end of the structs
* mpegvideoparse: accelerate search for start codeThijs Vermeir2010-10-141-0/+10
| | | | | | | | | As the startcode always starts with 0x000001 some iterations can be skipped if values > 1 are detected. ~ 70% faster on HD video stream. https://bugzilla.gnome.org/show_bug.cgi?id=632130
* ac3parse: properly parse e-ac3 frame headerMark Nauwelaerts2010-10-141-1/+7
| | | | Also add a few debug statements.
* faad: reflow opening and closing decoderMark Nauwelaerts2010-10-141-4/+24
| | | | | | In particular, this reconfigures quite forcefully when renegotiation is needed. Fixes #631501.
* qtmux: prevent infinite loop when adjusting framerateMark Nauwelaerts2010-10-131-0/+3
| | | | Fixes #632070.
* tests: jifmux: update tests to the new datetime apiThiago Santos2010-10-131-2/+2
| | | | Update jifmux tests to use new gstdatetime API in core
* geometrictransform: Adds rotate elementThiago Santos2010-10-134-0/+319
| | | | | | | Adds a new rotate element to geometrictransform. It still needs some work. But this is a good starting point. Based on patch from Bert Douglas <bertd tplogic com>
* flacparse: tweak setting buffer metadata; avoid timestamp jitterMark Nauwelaerts2010-10-131-3/+4
| | | | Fixes #631993.
* faad: cater for renegotiationMark Nauwelaerts2010-10-122-0/+12
| | | | | | | At least, whenever either stream (e.g. ADTS) or upstream provides necessary info for doing so. Fixes #631501.
* aacparse: streamline src caps settingMark Nauwelaerts2010-10-122-18/+46
| | | | In particular, also set src caps whenever changes in stream warrant doing so.
* directdrawsink: port GstXOverlay bits to new APITim-Philipp Müller2010-10-121-8/+9
| | | | Don't use deprecated API.
* faac: adjust unit test to faac modified outputMark Nauwelaerts2010-10-121-1/+1
|
* checks: remove variables from Makefile.am that aren't setTim-Philipp Müller2010-10-121-4/+4
| | | | | | | Remove some stuff that was copy'n'pasted from core but doesn't apply here. The following vars aren't set: CHECK_CFLAGS, CHECK_LIBS, GST_OBJ_CFLAGS, GST_OBJ_LIBS, so we may just as well remove them.
* examples: Fix compilation with GTK+ 3.0Sebastian Dröge2010-10-121-2/+5
|
* flacparse: Adjust unit tests to new flacparse behaviourSebastian Dröge2010-10-121-0/+23
| | | | | | | | | Garbage after frames is now included in the frames because flacparse has no easy way to detect the real end of a frame. Decoders are expected to everything after the frame because only decoding the bitstream will reveal the real end of the frame. Fixes bug #631814.
* flacparse: Don't drop the last frame if it is followed by garbageSebastian Dröge2010-10-121-5/+10
| | | | See bug #631814.
* baseparse: perform bitrate handling and posting after newsegment sendingMark Nauwelaerts2010-10-111-2/+4
|
* baseparse: immediately post subclass provided bitrateMark Nauwelaerts2010-10-111-0/+3
|
* flacparse: fix parsing with unknown framesizesMark Nauwelaerts2010-10-111-1/+5
| | | | Fixes #631814 (mostly).
* faac: handle trailing encoder outputMark Nauwelaerts2010-10-112-8/+13
|
* switchsrc: Set the GST_ELEMENT_IS_SOURCE flagSebastian Dröge2010-10-111-0/+4
|
* dvbsrc: Fix example usage, bandwidth=8 not 8MHzDamien Lespiau2010-10-101-1/+1
| | | | | The bandwidth property is enum that takes the values 8, 7, 6, AUTO not 8MHz.
* shm: Add C++ protectionOlivier Crête2010-10-081-0/+4
| | | | Add c++ protection in the relevant places
* Automatic update of common submoduleDavid Schleef2010-10-081-0/+0
| | | | From c4a8adc to 5a668bf
* Automatic update of common submoduleSebastian Dröge2010-10-081-0/+0
| | | | From 5e3c9bf to c4a8adc
* flacparse: Simplify frame header parsing by using lookup tablesSebastian Dröge2010-10-071-39/+23
| | | | | | Based on a patch by Felipe Contreras. See bug #631200.
* flacparse: Don't parse the complete FLAC frames but only look for valid ↵Sebastian Dröge2010-10-072-443/+245
| | | | | | | | | | | | | frame headers Thanks to Felipe Contreras for the suggestion. This is partially based on his patches and makes flacparse more than 3.5 times faster. Looking for valid frame headers is unlikely to give false positives because every frame header is at least 9 bytes long, contains a 14 bit sync code and a 8 bit checksum over the first 8 bytes. Fixes bug #631200.
* sdpdemux: workaround internal rtspsrc failing state changeMark Nauwelaerts2010-10-071-0/+8
| | | | Fixes #630046.
* audioparse: Add support for setting the channel-positionsSebastian Dröge2010-10-073-4/+111
|
* flacparse: Really post tags only after the initial newsegment eventSebastian Dröge2010-10-061-5/+18
| | | | | | | The first newsegment event will be send by the first call to gst_base_parse_push_buffer() if necessary, posting the tags before that is not a good idea. Instead do it from the GstBaseParse::pre_push_buffer vfunc.
* chromahold: Fix hue calculation for red colorsSebastian Dröge2010-10-061-8/+9
| | | | Also make the calculation much more accurate...
* chromahold: Make everything greyscale if the target color is greySebastian Dröge2010-10-061-2/+2
|
* chromahold: Add chromahold color effectSebastian Dröge2010-10-064-6/+553
| | | | | | This effect converts all colors except a single one to grey. The color is selected by an RGB triple and a tolerance for the color matching in hue degree can be specified.
* sdpdemux: fix and reflow some exitsMark Nauwelaerts2010-10-051-15/+15
|
* sdpdemux: error out if no streams found in sdp messageMark Nauwelaerts2010-10-051-0/+17
|
* sdpdemux: unbreak standard manager setupMark Nauwelaerts2010-10-051-6/+5
|
* .gitignore: ignore more unit test binariesTim-Philipp Müller2010-10-051-0/+3
|