From ab87478bdc08509fa64f31e6383c483b1e10c735 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 19 Jan 2018 18:50:07 +0000 Subject: [PATCH] tests: audioconvert: fix up check for lost channel positions The caps field is channel-mask these days, so that code path was never active. --- tests/check/elements/audioconvert.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/check/elements/audioconvert.c b/tests/check/elements/audioconvert.c index d157ef8..c3722aa 100644 --- a/tests/check/elements/audioconvert.c +++ b/tests/check/elements/audioconvert.c @@ -465,8 +465,8 @@ verify_convert (const gchar * which, void *in, int inlength, fail_unless (gst_structure_get_int (out_s, "channels", &out_chans)); /* positions for 1 and 2 channels are implicit if not provided */ - if (out_chans > 2 && gst_structure_has_field (in_s, "channel-positions")) { - if (!gst_structure_has_field (out_s, "channel-positions")) { + if (out_chans > 2 && gst_structure_has_field (in_s, "channel-mask")) { + if (!gst_structure_has_field (out_s, "channel-mask")) { gst_printerrln ("In : %" GST_PTR_FORMAT, in_s); gst_printerrln ("Out : %" GST_PTR_FORMAT, out_s); g_error ("Channel layout got lost somewhere\n"); -- 2.7.4