<div dir="ltr"><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div>Hi All,</div><div><br></div><div>I'm about to decode AAC stream - with the LibAV codec - received from Mainconcept's AAC encoder.</div><div><br></div><div>Basically, the Mainconcept library is doing an encoding on raw media input, sending it through to my LibAV decoder, where I'm trying to decode it. </div><div><br></div><div><div>My issue is, that I can't decode it the way the decoding example explains (<a href="https://libav.org/documentation/doxygen/master/decode__audio_8c_source.html">https://libav.org/documentation/doxygen/master/decode__audio_8c_source.html</a>)</div></div><div><br></div><div>120-140 byte packets are arriving each time from Mainconcept's encoder and I'm populating the AVPacket with the contents of the packet's buffer. I've tried to do it both by parsing and by copying the buffer's content manually into my AVPacket object. The avcodec_send_packet function succeeds both way. Upon calling the avcodec_receive_frame function I'm always getting back the EAGAIN error, no matter how much data I've sent for decoding. </div><div><br></div><div>I believe my codec, context and parser have been initialized properly, at least I did everything the example said. I've also got the packet and the frame initialized, and i did the same decoding process for video, and succeeded there. </div><div><br></div><div>The only difference is, that I've set certain properties for video decoding I've found in the context description. </div><div><br></div><div>My guess is, that I should be setting some flags or other properties for the audio codec context too, but I went through a lot of them without success, and I've got no clue how to continue. </div><div><br></div><div>Also there is another difference compared to the example: I'm not reading a file, but I'm getting the encoded packets in real time, one by one from the Mainconcept encoder. </div><div><br></div><div>Have you got any experience with AAC audio decoding? Can anyone help with this please? </div><div>  </div><div>Many thanks! </div><div><br></div><div>Kind Regards,</div><div><br></div><div>Attila </div><div><br></div></div></div></div>