> 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.
Questions regarding the Android source code are best asked on a discussion
list pertaining to Android source code:
http://source.android.com/discuss
--
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 Beginners" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---