> I want to write the parsed AAC data into a file before sending it to
> decoder.
> So, I checked that parsed data from AAC parser goes to
> pvmp4audiodecoderframe.cpp file in external/opencore/codec_v2/audio/
> aac/dec/src through the function called PVMP4AudioDecodeFrame().
>
> So in the function, I wrote this statements:
> FILE *fp;
> fp=fopen("AacData.aac", "ab");
> fwrite(pExt->pInputBuffer, pExt->inputBufferCurrentLength, 1, fp);
> fclose(fp);
>
> so whenever, the decode function will be called  the raw aac data will
> be written to this file.
> But its not doing so. The program is not crushing at all.
>
> Can anybody tell me where am I doing wrong.

You are posting to the wrong mailing list. Visit
http://source.android.com/discuss for lists pertinent to Android's source
code.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com
_The Busy Coder's Guide to Android Development_ Version 2.0 Available!



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to