Re: OpenCORE :: Running streaming test cases

2009-04-06 Thread raj.10788
Hi Ravi/Renuka, I am trying to make the open core test cases as per the steps given in the opencore directory. But when I make the build am getting the two errors. when I do the #make j I am geting the following error ---

About Overlay interface

2009-04-06 Thread pramod
hi, I am implementing a custom MIO which makes use of Overlay interface. my MIO calls the overlay ref through the call mSurface- createOverlay, then new Overlay(ref) call is used to get Overlay interface. Currently i am facing problem in mSurface-createOverlay, this is not returning the

How to use PV OMX component to decode a mp3 buffer

2009-04-06 Thread Nikhil
Hi All, I need to decode an mp3 buffer in Android to get uncompressed data. After decoding of each mp3 buffer, the applcation will send me new mp3 buffer to decode. Can anyone please help me how should I go about implementing the same in Android. Do I need to write a OMX IL client code using

Re: Build OpenCORE outside of Android

2009-04-06 Thread raj.10788
Hi Rktp, When I try the same in the quick_start file. I am geeting a error when building the make -j. When I make -j, am geeting the follwoing error, So can anyone help me out to solve this error.

Re: ./pvplayer_engine_test: permission denied

2009-04-06 Thread Christian Kuester
On Mon, Apr 06, 2009 at 03:49:52AM -0700, raj.10788 wrote: andr...@android-desktop:~$ adb shell cd /sdcard; pvplayer_engine_test -test 851 851 pvplayer_engine_test: not found SD-Cards are mounted noexec on the Android-Plattform. Try to remount the card with exec or move it to /system...

About screen rotation

2009-04-06 Thread UJ
Hello, I tried to trace the screen rotation procedure. I trace from application's andriodmanifest.xml -ActivityManager -WindowManager -SurfaceFlinger -???(Maybe Skia) -???(Maybe Display Driver) Can any experts give me some tips how to trace after the SurfaceFlingfer? Does it use Skia to do

./pvplayer_engine_test: permission denied

2009-04-06 Thread raj.10788
Hi, I am trying to run the open core unit test case. I did all the steps as per given in the quick _start document. When I execute make -j, I got some errors. i solved that one with the help of this forum http://groups.google.com/group/android-framework/browse_thread/thread

Re: Live streaming of H.264 encoded file

2009-04-06 Thread Dave Sparks
The media player requirements are only for MPEG-4 files, and not for RTSP/RTP/UDP streams. I think you are confusing MPEG-4 video encoding with MPEG-4 file format. In the case of RTSP streams, there is an SDP transaction with the server that provides the metadata required for the player to start

Re: OpenCORE :: Sound Recorder Pause/Resume

2009-04-06 Thread Dave Sparks
In OpenCORE 1.0, the AuthorEngine failed to restart properly after a pause. I don't recall the specifics, but it was late in the schedule and we didn't have time to fix it. AudioFlinger should be able to handle start/stop, but I doubt that it's handled properly in the MIO. On Apr 3, 10:10 pm,

Re: Live streaming of H.264 encoded file

2009-04-06 Thread Tareq Hossain
Aha .. that makes more sense .. and yes i did confuse those two and kept thinking in terms of frames. Thank you very much. Tareq On Mon, Apr 6, 2009 at 8:30 AM, Dave Sparks davidspa...@android.com wrote: The media player requirements are only for MPEG-4 files, and not for RTSP/RTP/UDP

Re: About screen rotation

2009-04-06 Thread Dianne Hackborn
SurfaceFlinger takes care of drawing the screen rotated. It don't believe it talks with the driver for this, but just draws the surfaces to the screen with a rotation transformation. On Mon, Apr 6, 2009 at 5:05 AM, UJ ujhu...@gmail.com wrote: Hello, I tried to trace the screen rotation

Re: OpenCORE :: Sound Recorder Pause/Resume

2009-04-06 Thread Dave Sparks
We are not using OpenCORE 2.0 in our internal tree yet. It will probably be a couple of months before we start testing this particular scenario. On Apr 6, 9:17 am, MMF android...@gmail.com wrote: Hi Dave, Thanks again for the reply. Can you please confirm if the below mentioned issue with

Re: About Overlay interface

2009-04-06 Thread waterblood
It should be a overlay engine in surfaceflinger which means a you should implment a overlay hardware HAL in hardware\libhardware\modules \overlay On 4月6日, 下午2时33分, pramod pramodkum...@gmail.com wrote: hi, I am implementing a custom MIO which makes use of Overlay interface. my MIO calls the

Re: About Overlay interface

2009-04-06 Thread pramod
hi , Thanks for responding, i have already implemented the overlay hardware HAL in libhardware. The overlay engine is created in the surfaceflinger,during displayhardware init(). After putting some debug prints i found out that this overlay engine is properly being used during the creation of

Re: ./pvplayer_engine_test: permission denied

2009-04-06 Thread Girish
Try changing the permission of the executable. some thing kike this chmod 777 pvplayer_engine_test and try .. Regards Girish On Apr 6, 4:22 pm, Christian Kuester c.kues...@tarent.de wrote: On Mon, Apr 06, 2009 at 03:49:52AM -0700, raj.10788 wrote: andr...@android-desktop:~$ adb shell cd