Hi,<br><br> I am trying to connect a source plugin to gstfaad plugin. the capabilities of my source plugin&#39;s source pad are as follows.<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/mpeg, &quot; &quot;mpegversion = (int) 2&quot;)<br>    );<br><br>From my plugin, I am first getting 14 bytes which is some AAC specific header and then AAC frames one after the other (the AAC data is parsed and i get one frame at a time). <br>
<br>Is the defenition of my pad template correct? Also what should I do with AAC data I am getting? As of now I am trying to push them as is to the faad (The 14 bytes first and then a frame by frame.) But the faad does not even seem to move to the PAUSED state.<br>
<br><br>