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
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2008-05-19 16:32:06 +0400
committerSebastian Dröge <slomo@circular-chaos.org>2008-05-19 16:32:06 +0400
commitb08811d150220f198d8bfec23d7fd9ea0b90b05b (patch)
treee9ff4ffa51182a8c354b4b0fa07b04d9b31ba557 /tests/check/elements/deinterleave.c
parent45fc13ebd94e9027a3d1e8f4dfacd0fe465850cd (diff)
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.
Diffstat (limited to 'tests/check/elements/deinterleave.c')
-rw-r--r--tests/check/elements/deinterleave.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/check/elements/deinterleave.c b/tests/check/elements/deinterleave.c
index c22acacae..23960c488 100644
--- a/tests/check/elements/deinterleave.c
+++ b/tests/check/elements/deinterleave.c
@@ -514,6 +514,7 @@ GST_START_TEST (test_8_channels_float32)
deinterleave = gst_element_factory_make ("deinterleave", "deinterleave");
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);