summaryrefslogtreecommitdiffstats
path: root/gst
AgeCommit message (Collapse)AuthorFilesLines
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.
2009-06-19scaletempo: Explicitely cast to signed integers to fix a segfaultMaximilian Högner1-1/+1
Fixes bug #585660.
2009-06-19shapewipe: Implement basic QoSSebastian Dröge2-1/+110
This change is based on Tim's QoS implementation for jpegdec.
2009-06-19shapewipe: Proxy queries on the video pads to the correct peersSebastian Dröge1-0/+51
2009-06-19shapewipe: Proxy bufferalloc on the video sinkpadSebastian Dröge1-0/+23
2009-06-19shapewipe: Try to work inplace if possibleSebastian Dröge1-8/+19
This saves one new, large allocation per frame for the most cases.
2009-06-18mxfdemux: fix stray semicolons that mess up if statementTim-Philipp Müller1-4/+4
2009-06-16camerabin: reset filename after capture to avoid racy when capturing againStefan Kost1-0/+1
If we don't reset the filename we cannot check if we still expect the filename for a subsequent capture pass. The imagebin would good to paused and we set the filename in that state. This trigers an error-message and would capture to the old filename.
2009-06-14camerabin: set imagebin to PAUSED on capture and delayed filename settingStefan Kost2-6/+25
We need to set imagebin to PAUSED to not fail the bufferalloc. We also need to keep the filesinks state locked until we have the filename for the run.
2009-06-14outputselector: do the pad_alloc for the pad that is pending and have a fallbackStefan Kost1-3/+10
We should do the pad_alloc for the pending pad if any, as we will switch to that pad on next _chain() call. Also do a fallback alloc, if there is no output yet to not fail state transitions in dynamic pipelines.
2009-06-07Added base libs to debug utils makefileLRN1-1/+1
Fixes #585015
2009-06-06hdvparse: Link against libm because we use pow().Edward Hervey1-1/+1
2009-06-06id3mux: init genre field in ID3v1 tag to an invalid numberTim-Philipp Müller1-0/+3
So that it is not interpreted as 'Blues' if no genre is to be written.
2009-06-06id3mux: don't write ID3v1 tag until specifically instructed to do soTim-Philipp Müller1-1/+1
ID3v1 tags are one of the most broken and ill-designed things that exist on this planet. Let's not write them by default.
2009-06-06id3mux: don't write empty ID3v1 tagTim-Philipp Müller1-11/+24
2009-06-06id3tag: rename new id3tag element to id3mux replacing the one removed from -uglyTim-Philipp Müller6-64/+64
2009-06-05nsf: Fix compiler warning on Solaris.Jan Schmidt1-2/+2
A SEC() macro already exists on Solaris, causing warnings about redefining it.
2009-06-05hdvparse: Fix the build on Commander Thaytan's S10SPEdward Hervey1-2/+3
2009-06-05camerabin: fix link orderStefan Kost1-2/+2
Move local version up in the link order.
2009-06-05hdvparse: Emit a GST_MESSAGE_ELEMENT with some goodness in it.Edward Hervey1-18/+67
2009-06-05mpegvideoparse: Add methods to get names of various values.Edward Hervey1-3/+64
2009-06-05mpegtsdemux: Fix HDV private stream definition/caps.Edward Hervey2-6/+11
2009-06-05hdvparse: Rewrite from scratch. Handle both hdv-a and hdv-vEdward Hervey1-184/+665
This time we analyze a lot more information. Still need to re-add the message emission.
2009-06-05camerabin: preview image sending optimizationLasse Laukkanen7-232/+723
* decouple image capturing from image post-processing and encoding * post image-captured message after image is captured * post preview-image message with snapshot of captured image
2009-06-05camerabin: don't lose post processing element in first resetLasse Laukkanen1-1/+0
2009-06-05camerabin: add debug including dot graph writingLasse Laukkanen3-3/+21
2009-06-05camerabin: unblock if error occurs during captureLasse Laukkanen1-9/+34
2009-06-05camerabin: ignore night mode handling if already in night modeLasse Laukkanen1-8/+12
2009-06-05camerabin: stop ongoing capture if changing resolutionLasse Laukkanen1-0/+3
2009-06-05camerabin: limit the size of video bin queue leading to view finderLasse Laukkanen1-1/+1
We don't want to show old buffers in view finder.
2009-06-05camerabin: don't proxy gst xoverlay interfaceLasse Laukkanen4-118/+1
Default view finder sink in camerabin is autovideosink which doesn't support xoverlay iface. If application decides to use another sink that supports xoverlay, then it can use the interface directly.
2009-06-05camerabin: allow configuring photography settings when in NULL stateLasse Laukkanen3-53/+283
Cache the photography settings if set in NULL state and apply them later
2009-06-05camerabin: crop still image capture frame if necessaryLasse Laukkanen1-6/+56
If incoming still image capture frame aspect ratio differs from aspect ratio that application requested, then apply crop to the frame.
2009-06-05output-selector: serialize setting and actual changing of new active padLasse Laukkanen1-13/+16
2009-06-05output-selector: unref latest buffer also when resending has been disabledLasse Laukkanen1-2/+5
2009-06-05output-selector: keep ref to buffer for resending only if explicitly requestedLasse Laukkanen1-5/+7
2009-06-04inputselector: don't leak pads in iteratorWim Taymans1-0/+1
2009-06-04mpegdemux: Add a GST_MEMDUMP line in the descriptor parsingJan Schmidt1-1/+3
Make it possible to see descriptor contents in the debug output (GST_DEBUG=mpegtsdesc:9), and remove a stray semi-colon.
2009-06-04mpegtsdemux: Avoid passing the custom GST_FLOW_NEED_MORE_DATA upstreamJan Schmidt1-5/+6
Don't return GST_FLOW_NEED_MORE_DATA from the chain function at the end of files.
2009-06-04inputselector: Notify when the tags property of the selector sinkpads changesSebastian Dröge1-0/+2
First part of bug #584686.
2009-06-02dvdspu: add missing header to Makefile.am: gstspu-common.hChristian Schaller1-1/+1
2009-06-02aacparse: fix sample rate extraction from codec dataTim-Philipp Müller1-22/+20
In one case we extracted the sample rate index from the codec data and saved it as sample rate rather than getting the real sample rate from the table. Fix that, and also make sure we don't access non-existant table entries by adding a small helper function that guards against out-of-bounds access in case of invalid input data.
2009-06-02aacparse, amrparse: remove bogus gst_pad_fixate_caps() callsTim-Philipp Müller2-2/+0
2009-06-02baseparse: propagate return value of GstBaseParse::set_sink_caps()Tim-Philipp Müller3-3/+3
gst_base_parse_sink_setcaps() presumably should fail if the subclass returns FALSE from its ::set_sink_caps() function.
2009-06-02baseparse: don't try to GST_LOG an already-freed caps stringTim-Philipp Müller3-18/+6
The proper way to log caps is via GST_PTR_FORMAT anyway.
2009-06-02aacparse: set channels and rate on output caps, and keep codec_dataTim-Philipp Müller1-7/+17
Create output caps from input caps, so we maintain any fields we might get on the input caps, such as codec_data or rate and channels. Set channels and rate on the output caps if we don't have input caps or they don't contain such fields. We do this partly because we can, but also because some muxers need this information. Tagreadbin will also be happy about this.
2009-06-01gppmux: enhance ftyp brand heuristic. Fixes #584360.Mark Nauwelaerts4-4/+57
2009-06-01shapewipe: Fix some issues that were exposed by the new unit testSebastian Dröge1-10/+12