summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2009-07-23docs: fix docs build againTim-Philipp Müller2-9/+0
There is no element called 'ladspa', so there won't be a -details file for it.
2009-07-23mpegdemux: Remove some backward compatibility codeSebastian Dröge2-116/+1
Also we always require liboil so use it unconditionally.
2009-07-23mpegdemux: Implement query type function for the src padsSebastian Dröge2-0/+32
2009-07-22mimdec: Lock element before unlockingOlivier Crête1-1/+2
2009-07-22mimdec: Fix leaksOlivier Crête1-6/+4
Use gst_pad_new_from_static_template() to not leak the pad template Also properly chain up the finalize to the parent
2009-07-22mimenc: Use gst_pad_new_from_static_templateOlivier Crête1-6/+2
Prevents leak found by valgrind
2009-07-22mimenc: Unref clockidOlivier Crête1-0/+2
2009-07-22mimdec: Don't overwrite valid timestampsOlivier Crête1-1/+5
2009-07-22Revert "mimdec: Ignore the timestamps inside the buffers"Olivier Crête2-2/+97
This reverts commit 5e051fa98aeebdce2eca6b321ec1929e6f8fdf61.
2009-07-22rtpsession: Free conflicting addresses on finalizeOlivier Crête1-0/+3
2009-07-22rtpmux: Free the pad private data on pad releaseOlivier Crête1-18/+50
Free the pad private data on pad release instead of using a weak ref, which is not thread safe. Also, lock the content of the pad private using the element's object lock.
2009-07-22mimenc: Ignore errors pushing out new segmentsOlivier Crête1-12/+4
The following buffer push will return more valuable information.
2009-07-22docs: add docs for ladspa and update plugin docsStefan Kost93-663/+12420
Add also inspect files for lv2 and frei0r (no docs yet).
2009-07-22camerabin: more perf-test cleanupsStefan Kost1-23/+40
Remove some obsolete exmaples. Add video-width/height. Use proper api for setting still image resolution. Fix stopping random tests on bin-state-changes. Remove the memdup in snapshot again, as its not needed (pixbuf goes out of scope with the buffer).
2009-07-22dshowsrcwrapper: update Makefile.am for source file renames as wellTim-Philipp Müller1-2/+2
2009-07-22docs: add pcapparse to docsTim-Philipp Müller4-0/+25
2009-07-22dshowaudiosrc: do not remove a range of length 0Julien Isorce1-1/+3
2009-07-22dshowaudiosrc: converts code to C++Julien Isorce2-93/+71
2009-07-22dshowvideosrc: converts code to C++Julien Isorce2-90/+73
2009-07-22mpegdemux: don't add a base_time==-1 to segment positionsStefan Kost1-5/+9
Fixes assertion about newsegment with start=-1.
2009-07-21camerabin: small speedup in software zoomStefan Kost1-0/+4
Force crop on even pixel position to avoid slowpath in crop & scale.
2009-07-21camerabin: we need to copy the data in the exampleStefan Kost1-2/+4
gdk_pixbuf_new_from_data does not copy the data.
2009-07-21make: remove whitespace after trailing backslashStefan Kost1-1/+1
2009-07-21kate: fix time conversion from DVD style timestamps.Vincent Penquerc'h1-1/+1
2009-07-21mxfdemux: Implement SEEKING querySebastian Dröge1-0/+55
2009-07-21mpegpsdemux: Implement SEEKING querySebastian Dröge1-0/+55
Fixes bug #588944.
2009-07-21mpegtsdemux: Implement SEEKING querySebastian Dröge1-0/+45
Partially fixes bug #588944.
2009-07-21mpegtsparse: Free the PMT before setting a new oneSebastian Dröge1-0/+3
2009-07-21mpegtsparse: Remove old PES PIDs when receiving PAT tablesMikael Magnusson1-22/+32
Fixes bug #583470.
2009-07-21dshowsrcwrapper: fix relative pathJulien Isorce1-3/+3
2009-07-21start refactoring of dshowsrcwrapperJulien Isorce24-623/+386
-remove gst-libs/gst/dshow -fakesource is moved from gst-libs/gst/dshow to sys/dshowsrcwrapper -some minor changes (C/C++ check and includes) to make the plugin compile again.
2009-07-21kate: use new GST_TAG_SUBITLE_CODEC tag instead of GST_TAG_CODECTim-Philipp Müller1-2/+2
2009-07-21katedec: only put primary language tag in GST_TAG_LANGUAGETim-Philipp Müller3-12/+21
Only put primary language into GST_TAG_LANGUAGE, and convert to lower case, ie. only use "en" of "en_GB". This is per our tag documentation and hence what apps expect. Also add example to kateenc property description so people know a language code is wanted here.
2009-07-21katedec: add comment why we dont' support application/x-kate here for nowTim-Philipp Müller1-0/+4
2009-07-21katedec: create SPU format images from suitable background imagesVincent Penquerc'h6-584/+990
Make katedec fabricate dvd-style subpictures for subtitle overlay bitmaps, for easier playbin2 integration (#588638).
2009-07-20kate: fix some minor memory leaksogg.k.ogg.k4-5/+12
Makes 'make check-valgrind' work for the kate unit test (#525743)
2009-07-20camerabin: add code in test to store snapshots for manual verificationStefan Kost1-6/+32
Use gdk_pixbuf to save the image in perf-test. Also remove some obsolute commented out code.
2009-07-20camerabin: log formats in preview image conversionStefan Kost1-1/+4
2009-07-20camerabin: remove unused variable assignmentStefan Kost1-4/+1
Result is not needed here, but variable is used later on. Also remove double new lines in function.
2009-07-20fpsdisplaysink: check query return result before using itStefan Kost1-1/+4
2009-07-20metadata: don't dereference the pointer before the validity checkStefan Kost1-1/+3
2009-07-20camerabin: improve perf test robustness and add commentsStefan Kost1-9/+16
2009-07-20kateenc: also recognise the new recommended 'SUB' categoryVincent Penquerc'h1-1/+19
Move the check for 'simple' subtitles category to a separate routine and add in the new recommended SUB category (#525743).
2009-07-20kateenc: keep bitmap/palette/region around when on the spot encoding is not ↵Vincent Penquerc'h2-11/+51
possible due to an unknown end time Fixes valgrind unitialized value report. See #525743.
2009-07-19docs: add inspect info for kate pluginTim-Philipp Müller1-0/+124
Should fix the docs build.
2009-07-19kate: add some FIXMEsTim-Philipp Müller6-2/+13
2009-07-19katedec: demote to GST_RANK_NONE for nowTim-Philipp Müller1-1/+1
There are still some autoplugging issues to sort out, and it needs some testing.
2009-07-19checks: add kate unit tests to valgrind blacklist for nowTim-Philipp Müller2-0/+3
And add check binary to ignore list.
2009-07-19kate: make sure to free some more stuffTim-Philipp Müller2-0/+33
2009-07-19kate: fix up for additional subtitle/x-kate media typeTim-Philipp Müller7-18/+40