From: Wim Taymans Date: Mon, 14 Jun 2010 15:48:58 +0000 (+0200) Subject: audioresample: set pads as negotiable X-Git-Tag: 1.19.3~511^2~8315 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5f74f3a82eb54f9a9517f99dffbe45ce4d474870;p=platform%2Fupstream%2Fgstreamer.git audioresample: set pads as negotiable --- diff --git a/tests/check/elements/audioresample.c b/tests/check/elements/audioresample.c index a9a2e3b..0b3ffea 100644 --- a/tests/check/elements/audioresample.c +++ b/tests/check/elements/audioresample.c @@ -110,6 +110,9 @@ setup_audioresample (int channels, int inrate, int outrate, int width, gst_pad_set_caps (mysinkpad, caps); gst_pad_use_fixed_caps (mysinkpad); + gst_pad_set_negotiable (mysinkpad, TRUE); + gst_pad_set_negotiable (mysrcpad, TRUE); + gst_pad_set_active (mysinkpad, TRUE); gst_pad_set_active (mysrcpad, TRUE);