mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
tests/check/elements/deinterleave.c: Set keep-positions property to TRUE for the 8 channel test to ensure that the or...
Original commit message from CVS: * tests/check/elements/deinterleave.c: (GST_START_TEST): Set keep-positions property to TRUE for the 8 channel test to ensure that the original channel position is set on the output.
This commit is contained in:
parent
814b6ea02c
commit
b641c49a4c
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2008-05-19 Sebastian Dröge <slomo@circular-chaos.org>
|
||||||
|
|
||||||
|
* tests/check/elements/deinterleave.c: (GST_START_TEST):
|
||||||
|
Set keep-positions property to TRUE for the 8 channel test to ensure
|
||||||
|
that the original channel position is set on the output.
|
||||||
|
|
||||||
2008-05-19 Sebastian Dröge <slomo@circular-chaos.org>
|
2008-05-19 Sebastian Dröge <slomo@circular-chaos.org>
|
||||||
|
|
||||||
* gst/interleave/deinterleave.c: (gst_deinterleave_class_init),
|
* gst/interleave/deinterleave.c: (gst_deinterleave_class_init),
|
||||||
|
|
|
@ -514,6 +514,7 @@ GST_START_TEST (test_8_channels_float32)
|
||||||
|
|
||||||
deinterleave = gst_element_factory_make ("deinterleave", "deinterleave");
|
deinterleave = gst_element_factory_make ("deinterleave", "deinterleave");
|
||||||
fail_unless (deinterleave != NULL, "failed to create deinterleave element");
|
fail_unless (deinterleave != NULL, "failed to create deinterleave element");
|
||||||
|
g_object_set (deinterleave, "keep-positions", TRUE, NULL);
|
||||||
|
|
||||||
gst_bin_add_many (GST_BIN (pipeline), src, deinterleave, NULL);
|
gst_bin_add_many (GST_BIN (pipeline), src, deinterleave, NULL);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue