summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2008-05-19 12:32:06 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2008-05-19 12:32:06 +0000
commitb641c49a4c4d1cb05b95538d83144a3ad5c1326f (patch)
tree3b3a3063ddd12f8cc0074eb65ac26f557686a714 /tests
parent814b6ea02cd888cf8919ff116e9a5aa0925701b1 (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')
-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);