summaryrefslogtreecommitdiffstats
path: root/gst
AgeCommit message (Collapse)AuthorFilesLines
2009-06-29frei0r: In the filter plugins create the frei0r instances in create() before ↵Sebastian Dröge2-13/+12
playback starts
2009-06-29frei0r: In the mixer plugins create the frei0r instances in create() before ↵Sebastian Dröge1-12/+9
playback starts
2009-06-29frei0r: In the src plugins create the frei0r instances in create() before ↵Sebastian Dröge1-11/+10
playback starts
2009-06-29frei0r: Use fixed caps on the filter padsSebastian Dröge1-0/+2
This is required because we have to create a new frei0r instance for any caps changes and the instances can have history. Just creating a new instance during playback can result in bad output right after the caps change.
2009-06-27frei0r: Set the default property values correctlySebastian Dröge1-9/+38
2009-06-26camerabin: code cleanupsStefan Kost1-14/+10
Downgrade a WARNING to INFO. Use a bit more compact code. Add a fixme comment.
2009-06-26camerabin: just ref caps, we don't need a writable copyStefan Kost1-1/+3
2009-06-26camerabin: no need to ref and unref this temporarilyStefan Kost1-2/+3
2009-06-26camerabin: don't leak sink_caps if they would be any-capsStefan Kost1-22/+24
2009-06-26camerabin: don't leak preview imagesStefan Kost1-0/+1
2009-06-26camerabin: don't leak viewfinder-capsStefan Kost1-0/+2
2009-06-26camerabin: insert a few blank lines for readabilityStefan Kost1-1/+3
2009-06-26camerabin: don't leak messages and element refs in previewStefan Kost1-1/+14
2009-06-26freeze: don't build plugin static libChangwoo Ryu1-0/+1
Pass --tag=disable-static to libtool like we do for other plugins. Fixes #587023.
2009-06-25camerabin: don't leak requestpadsStefan Kost2-0/+9
Requestpads need to be released and unreffed. Add a comment in one case where we intentionaly don't unref.
2009-06-25capssetter: import element into -badMark Nauwelaerts4-3/+418
2009-06-25qtmux: Remove unused variable.Edward Hervey1-3/+0
2009-06-25qtmux: Fix debug statement.Edward Hervey1-1/+2
2009-06-24camerabin: buffer-alloc support fixes to image and video bin handlingLasse Laukkanen1-45/+29
Keep image bin in PAUSED state in image mode except when processing/saving (PLAYING/READY). Change output-selector to view finder before setting video bin to READY. Fix filename sent with img-done signal.
2009-06-24camerabin: fix setting mute when video bin elements haven't been createdLasse Laukkanen2-12/+16
2009-06-24camerabin: set image bin to PAUSED when starting captureLasse Laukkanen1-3/+3
Set image bin to PAUSED also when starting capture using photography interface.
2009-06-24camerabin: leave v4l2camsrc "capture-mode" as video mode when pausingLasse Laukkanen1-12/+0
2009-06-23shapewipe: Correctly handle 0/1 fpsSebastian Dröge1-1/+4
2009-06-22camerabin: add local include dir to CFLAGSStefan Kost1-1/+3
2009-06-22camerabin: code cruft removal and debug logsStefan Kost5-134/+92
Remove unused code. Add lots of debug loging. Change comments for local functions to not use /** gtk-doc start style.
2009-06-22h264parse: detect and fix for bad NALU sizesWim Taymans1-0/+10
when in AVC mode a nalu size seems invalid, assume the NALU has the size of the available data instead of looping forever. Fixes #586354
2009-06-20vdpau: change element rank for testing purposesCarl-Anton Ingmarsson1-1/+1
set mpegvideoparse rank to primary and vdpaumpegdec to primary - 1 to get vdpaumpegdec correctly plugged into playbin
2009-06-19rtpbin: add support for buffer-listBranko Subasic5-62/+161
Add support for sending buffer-lists. Add unit test for testing that the buffer-list passed through rtpbin. fixes #585839
2009-06-19aacparse: ADIF: do not send bogus timestamps, leave to downstream (decoder)Mark Nauwelaerts1-2/+6
2009-06-19qtmux: only use (64-bit) extended (mdat) atom size if needed. Fixes #585319.Mark Nauwelaerts3-21/+42
2009-06-19qtmux: set default movie timescale to microsecond unitsMark Nauwelaerts1-1/+1
2009-06-19qtmux: compress/optimize stsc writingMark Nauwelaerts1-0/+4
2009-06-19qtmux: add 3GP style tagging (and refactor appropriately)Mark Nauwelaerts5-151/+487
2009-06-19qtmux (and variants): handle pixel-aspect-ratio. Fixes #584358.Mark Nauwelaerts4-3/+55
2009-06-19Fix previous commit so that things still work with debug logs enabledTim-Philipp Müller1-1/+1
2009-06-19Make build without warnings with debugging disabledTim-Philipp Müller5-16/+13
2009-06-19frei0r: Make plugin scanning more robustSebastian Dröge4-15/+20
2009-06-19frei0r: Make sure to only register plugins that have valid propert typesSebastian Dröge1-0/+15
2009-06-19frei0r: Remove custom get_unit_size implementationSebastian Dröge1-16/+0
This is already handled by the default one from GstVideoFilter
2009-06-19frei0r: Fix the klass of the filter elementsSebastian Dröge1-1/+1
2009-06-19frei0r: Free type namesSebastian Dröge3-3/+15
2009-06-19frei0r: Unref the GstCollectPads instance on finalizeSebastian Dröge1-0/+4
2009-06-19frei0r: Don't allow caps changes in PLAYING/PAUSEDSebastian Dröge1-24/+11
Most frei0r source plugins generate output based on previous output and creating a new instance on caps changes will let the output start at 0 again.
2009-06-19freir0: Add support for frei0r mixer pluginsSebastian Dröge5-8/+867
2009-06-19frei0r: Destroy the f0r_instance_t in stop()Sebastian Dröge1-0/+18
2009-06-19frei0r: Add the frei0r plugin type to the element nameSebastian Dröge2-2/+2
This makes it easier to distinguish generators from filters, etc
2009-06-19frei0r: Add support for frei0r source/generator pluginsSebastian Dröge4-2/+482
2009-06-19frei0r: Allow the complete double range for double propertiesSebastian Dröge1-1/+1
The spec restricts it to [0,1] but some plugins are using the complete double range.
2009-06-19frei0r: Use better property nicksSebastian Dröge1-4/+17
2009-06-19frei0r: First version of a frei0r wrapper pluginSebastian Dröge6-0/+1535
Currently this only supports frei0r filters.