From 22373acee31c6dd7d194204f37a3b2b31e1a7510 Mon Sep 17 00:00:00 2001 From: George Kiagiadakis Date: Wed, 11 Jul 2018 18:29:52 +0300 Subject: [PATCH] tests: simple-launch-lines: fixate audioconvert caps now that the layout is also convertable Because audioconvert can now convert between interleaved and non-interleaved, this pipeline fails on the upstream capsfilter not being able to fixate its output caps. This is unavoidable. --- tests/check/pipelines/simple-launch-lines.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/check/pipelines/simple-launch-lines.c b/tests/check/pipelines/simple-launch-lines.c index d3e9bb7c4e..cb079fc30e 100644 --- a/tests/check/pipelines/simple-launch-lines.c +++ b/tests/check/pipelines/simple-launch-lines.c @@ -113,9 +113,9 @@ GST_START_TEST (test_element_negotiation) * will apply those caps to the buffers. * see http://bugzilla.gnome.org/show_bug.cgi?id=315126 */ s = "fakesrc num-buffers=2 ! " - "audio/x-raw,format=" GST_AUDIO_NE (S16) ",rate=22050,channels=1 " + "audio/x-raw,format=" GST_AUDIO_NE (S16) ",rate=22050,channels=1,layout=interleaved " "! audioconvert " - "! audio/x-raw,format=" GST_AUDIO_NE (S16) ",rate=22050,channels=1 " + "! audio/x-raw,format=" GST_AUDIO_NE (S16) ",rate=22050,channels=1,layout=interleaved " "! fakesink"; run_pipeline (setup_pipeline (s), s, GST_MESSAGE_ANY & ~(GST_MESSAGE_ERROR | GST_MESSAGE_WARNING),