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:
Sebastian Dröge 2008-05-19 12:32:06 +00:00
parent 814b6ea02c
commit b641c49a4c
2 changed files with 7 additions and 0 deletions

View file

@ -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>
* gst/interleave/deinterleave.c: (gst_deinterleave_class_init),

View file

@ -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);