[android-porting] Re: capturing the encoded audio data read by the PV

2010-01-18 Thread guru
hI Ravi, I am capturing the AAC data, in this I need one clarification. If I use .m4a format stream, is .m4a container will be removed and raw AAC data is passed to Component OR will it include AAC data along with the m4a container?. My decoder supports raw AAC(adts & adif) data and it doesnt hav

[android-porting] Re: capturing the encoded audio data read by the PV

2010-01-12 Thread RaviY
The most simple form of debugging is to capture the input being sent to the OMX component [as part of EmptyThisBuffer] and the output being received [as part of FillBufferDone]. This will tell u whether u r receiving the the output as expected against the input being provided. -Ravi On Jan 13, 9:

[android-porting] Re: capturing the encoded audio data read by the PV

2010-01-12 Thread guru
Hi Ravi, I have integrated AAC decoder to Opencore. When I try to play media file, it status bar is going up to 24 sec and but I am not hearing any sound. aftre 24 seconds it will stop but displaying ( it will go on displaying these values until media server dies) I/DEBUG ( 875): 40d6cf30

[android-porting] Re: capturing the encoded audio data read by the PV

2010-01-12 Thread RaviY
- What is it that you are trying to do? - The "source" node is the one handling the reading of the content. You can try to follow the aac parser node or mp3 parser node for an example. -Ravi On Jan 12, 2:57 pm, guru wrote: > HI All > > I want to capture the encoded audio data read by the PV whic