Hi,<br>I am writing a decoder plugin for mp3 decoder, when i am try to connect to alsasink,i am getting error as,<br><br>ERROR: from element /GstPipeline:pipeline0/GstAlsa<div id=":1bz">Sink:alsasink0: The stream is in the wrong format.<br>

Additional debug info:<br>
gstbaseaudiosink.c(929): gst_base_audio_sink_preroll (): /GstPipeline:pipeline0/GstAlsaSink:alsasink0:<br>
sink not negotiated.<br>
ERROR: pipeline doesn&#39;t want to preroll.<br>
<br>
I have set the capabilities as,<br><br>
static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE (&quot;src&quot;,<br>
   GST_PAD_SRC,<br>
   GST_PAD_ALWAYS,<br>
   GST_STATIC_CAPS ( &quot;audio/x-raw-int, &quot;<br>
   &quot;rate = (int) [ 1, MAX ], &quot;<br>
   &quot;channels = (int) [ 1, MAX ], &quot;<br>
   &quot;endianness = (int) { LITTLE_ENDIAN, BIG_ENDIAN }, &quot;<br>
   &quot;width = (int) 16, &quot;<br>
   &quot;depth = (int) [ 1, 16 ], &quot;<br>
   &quot;signed = (boolean) { true, false }&quot;)<br>
   );<br><br>Regards,<br>Vijay P<br></div>