HI,
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 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
-~----------~----~----~----~------~----~------~--~---

Reply via email to