Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gst-plugins-good.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-07-29interleave: set output caps layout to interleavedPhilippe Normand
Set output caps layout independently from input caps layout which can be either non-interleaved or interleaved. https://bugzilla.gnome.org/show_bug.cgi?id=733866
2014-02-08interleave: Fix unitialized variable compiler warning in testSebastian Dröge
error: variable 'mask' is used uninitialized whenever 'if' condition is false [-Werror,-Wsometimes-uninitialized]
2013-05-14interleave: Fix event handling in unit testSebastian Dröge
2012-11-04Fix FSF addressTim-Philipp Müller
https://bugzilla.gnome.org/show_bug.cgi?id=687520
2012-06-08update for audio api changeWim Taymans
2012-04-09interleave: make channel-poisitions property a GValueArray againTim-Philipp Müller
Or perhaps it should just be a guint64 channel mask, which would be nicer in C, but more awkward for bindings (even more so since we can't add a flags type for it, since that only supports guint size flags). Fixes wavenc unit test. https://bugzilla.gnome.org/show_bug.cgi?id=669643
2012-04-05tests: make few tests more valgrind-friendlyMark Nauwelaerts
2012-03-30update for buffer api changeWim Taymans
2012-03-01Merge branch 'master' into 0.11Mark Nauwelaerts
Conflicts: ext/wavpack/gstwavpackenc.c tests/check/elements/audioiirfilter.c tests/examples/v4l2/probe.c
2012-02-27Suppress deprecation warnings in selected files, for g_value_array_* mostlyEdward Hervey
2012-02-22update for new memory apiWim Taymans
2012-02-16interleave: port to 0.11Philippe Normand
Port of the interleave element and its unittests. https://bugzilla.gnome.org/show_bug.cgi?id=669643
2012-02-03tests: fix some more testsWim Taymans
2012-01-31tests: fix more testsWim Taymans
2012-01-03test: make more unit tests compileWim Taymans
2011-11-04make %u in all request pad templatesWim Taymans
2010-12-05check: Fixup the shutting down orderEdward Hervey
First bring down everything to NULL before attempting to unlink or unref anything. Avoids the tests just hanging there for ever waiting to acquire a lock that doesn't exist anymore.
2010-12-03tests: remove newlines between variable decls (old gst-indent failure)Stefan Kost
2010-03-11tests: fix metadata not writable warnings in interleave and deinterleave testsTim-Philipp Müller
2008-12-16tests/check/elements/interleave.c: Increase timeout to 3 minutes to prevent ↵Sebastian Dröge
timeouts. Original commit message from CVS: * tests/check/elements/interleave.c: (interleave_suite): Increase timeout to 3 minutes to prevent timeouts.
2008-06-02gst/interleave/interleave.*: Allow setting channel positions via a property ↵Sebastian Dröge
and allow using the channel positions on ... Original commit message from CVS: * gst/interleave/interleave.c: (gst_interleave_pad_get_type), (gst_interleave_finalize), (gst_audio_check_channel_positions), (gst_interleave_set_channel_positions), (gst_interleave_class_init), (gst_interleave_init), (gst_interleave_set_property), (gst_interleave_get_property), (gst_interleave_request_new_pad), (gst_interleave_release_pad), (gst_interleave_sink_setcaps), (gst_interleave_src_query_duration), (gst_interleave_src_query_latency), (gst_interleave_collected): * gst/interleave/interleave.h: Allow setting channel positions via a property and allow using the channel positions on the input as the channel positions of the output. Fix some broken logic and memory leaks. * tests/check/Makefile.am: * tests/check/elements/interleave.c: (src_handoff_float32), (sink_handoff_float32), (GST_START_TEST), (interleave_suite): Add unit tests for checking correct handling of channel positions.
2008-05-26gst/interleave/deinterleave.c: Add another example launch line.Sebastian Dröge
Original commit message from CVS: * gst/interleave/deinterleave.c: Add another example launch line. * gst/interleave/interleave.c: (interleave_24), (gst_interleave_finalize), (gst_interleave_base_init), (gst_interleave_class_init), (gst_interleave_init), (gst_interleave_request_new_pad), (gst_interleave_release_pad), (gst_interleave_change_state), (__remove_channels), (__set_channels), (gst_interleave_sink_getcaps), (gst_interleave_set_process_function), (gst_interleave_sink_setcaps), (gst_interleave_sink_event), (gst_interleave_src_query_duration), (gst_interleave_src_query), (forward_event_func), (forward_event), (gst_interleave_src_event), (gst_interleave_collected): * gst/interleave/interleave.h: Major rewrite of interleave using GstCollectpads. This new version also supports almost all raw audio formats and has better caps negotiation. Fixes bug #506594. Also update docs and add some more examples. * tests/check/elements/interleave.c: (interleave_chain_func), (GST_START_TEST), (src_handoff_float32), (sink_handoff_float32), (interleave_suite): Add some more extensive unit tests for interleave.
2007-10-27gst/interleave/interleave.c: Let's not call every request pad we create ↵Tim-Philipp Müller
"sink%d", that'll create problems if there's ... Original commit message from CVS: * gst/interleave/interleave.c: (gst_interleave_request_new_pad): Let's not call every request pad we create "sink%d", that'll create problems if there's to be more than one pad. Fixes #490682. * tests/check/Makefile.am: * tests/check/elements/.cvsignore: * tests/check/elements/interleave.c: Add unit test for the above.