Hello
I am trying to give my audio-processing program some network functionality. To do so i implemented my source code, wich is based on the audio-example of the psp into the NDK-client example. compiling linking and executing works well, but while running the audio-Task the creation of the in- and outstream (procedure createStreams() ) and MEM_calloc (procedure prime() ) fails. And so the audio processing is unable to run.
I am wondering if this could be caused by the different memory-section-configurations. Within the DSP/BIOS config of the NDK-example, there is no Iram-available (there is a Cache_L2, in wich i am am not allowed to put a stack in) so the audio Task has its stack segment on SDRAM.
could this be the reason to fail allocating or creating streams ?
Or could you provide me with (other) possible solution?
(i am using the OMAP L137 TMS320C6747 Floating Point Starter Kit and Code Composer Studio 3.3, if this is a matter of concern)
best Regards Rico