[android-porting] Re: Announcement: [New project] Build and run only Dalvik

2009-10-05 Thread Rakesh Kumar
Hi Avtar, Please help me in your third point "Run and test". Are you able to run any application on the Dalvik virtual machine using your approach?. And please tell me the changes that are required to run an application. Regards Rakesh On Wed, Jul 15, 2009 at 3:15 PM, Avtar Singh wr

[android-porting] Re: problems with seeking even to the very beginning of stream

2009-10-05 Thread shadow
Here is flags which i set on each sample: markerInfo |= PVMF_MEDIA_DATA_MARKER_INFO_DURATION_AVAILABLE_BIT; markerInfo |= PVMF_MEDIA_DATA_MARKER_INFO_M_BIT; if ( bIsKeyFrame ) { markerInfo |= PVMF_MEDIA_DATA_MARKER_INFO_RANDOM_ACCESS_POINT_BIT; } Here

[android-porting] Re: convert Launcher to an app

2009-10-05 Thread Dianne Hackborn
Launcher -is- an app. It is not part of the framework. If you mean fixing the current app to only build against the SDK, I am sure many people have done this, because probably most of the home screen replacements you find on Market are based on the standard launcher app. On Mon, Oct 5, 2009 at 7

[android-porting] Re: problems with seeking even to the very beginning of stream

2009-10-05 Thread shadow
Hi RaviY, Thanks for the fast response. I've one question regarding timestamps: 1) How they could be always increased in case of I,P,B stream, for example? 2) What timestamp should i set on the very first sample, after seeking on the zero position? i would suppose 0, even the last timestamp be

[android-porting] convert Launcher to an app

2009-10-05 Thread Andy Droid
Has anyone pulled Launcher out of the framework, and converted it to a home screen-like app? i.e., it can be installed and uninstalled like a home screen? Looks like its a lot of work, if its even possible. If anyone has, and has made the source available, I would love to get it. thanks. --~--~

[android-porting] Android and ARM926EJ-S

2009-10-05 Thread Hamilton Vera
Greetings everybody. I am working with a imx27 ( ARM926EJ-S ), this kind of processor supports thumb and java bytecode execution. Does android take advantage of this capability? Thanks in advance. Hamilton Vera -- Hamilton Vera http://hvera.wordpress.com --~--~-~--~~~

[android-porting] Re: How to autoload drivers in Android?

2009-10-05 Thread Yi Sun
check the android-x86 in www.android-x86.org and look at the autodetect script in bootable/newinstaller/initrd/scripts On Mon, Oct 5, 2009 at 2:51 PM, Lewis Z. wrote: > > I have two device drivers to load during the OS bootup. They also need > to be loaded early when the RAM is still plenty (mor

[android-porting] How to autoload drivers in Android?

2009-10-05 Thread Lewis Z.
I have two device drivers to load during the OS bootup. They also need to be loaded early when the RAM is still plenty (more than 40MB). I have tried to put the insmod's in init.rc in the root. But they are not loaded at all. In the shell, I manually run the insmod's and they work fine. Can someo

[android-porting] opencore logs for video

2009-10-05 Thread vinandroid
I am trying to play mpeg 4 video on the emulator. when i try take logs using adb logcat I get only write blocked for some milli seconds messages when the actual video starts playing. Below are some of the log messages.I am using android source code 1.5 cupcake. How to get the working logs so a

[android-porting] Lock up PackageManagerService

2009-10-05 Thread zam
Hi All, I am trying to boot up Android 1.5.3 on an OMAP 3430 device. The device shows the shiny Android text logo but does not boot up further. On debugging I found out that while booting up the PackageManagerService cunstructor locks up. I am listing the code snippet below where the lockup occu

[android-porting] Re: problems with seeking even to the very beginning of stream

2009-10-05 Thread RaviY
There isn't enough information here to help. I can suggest looking at the following things: (a) The media timestamps sent by your splitter node -- They should always be increasing. (b) Make sure that the marker info masks (pvmi/pvmf/include/ pvmf_media_data.h) are set correctly. (c) Getting (or sh

[android-porting] Re: V4L2 Camera interface

2009-10-05 Thread Harishkumar V
Hi, u also look at 0xdorid camera HAL implementation On Fri, Oct 2, 2009 at 1:06 AM, Michael Trimarchi < trimar...@gandalf.sssup.it> wrote: > praj wrote: > > Hi Harish, > > > > I'm trying out something similar. I'm able to see /dev/video0. > > > > Can you pass me a link to the V4L2 patch? > > >

[android-porting] Re: Android 1.5 ported?

2009-10-05 Thread sanyanniesunney anniesunney
Try not putting the file system in a folder On Mon, Oct 5, 2009 at 5:28 AM, gambler wrote: > > OK,I have solve this problem.After you install the 0xdroid, you need > to set the bootargs and bootcmd. > > However, I face another problem. Now it shows, > > Warning: unable to open an initial co

[android-porting] problems with seeking even to the very beginning of stream

2009-10-05 Thread shadow
Hi All, I've faced the issue with seeking in my source (splitter) node... after setposition() has been called, all frames seems to be skipped in the upstream filters (such as existed OMX MPEG-4 video decoder). I'm sure that is my splitter engine works correct, the problem seems to be in the my

[android-porting] Re: samples from media pool never released by OMX MPEG-4 Video Decoder

2009-10-05 Thread shadow
seems i've found where i was wrong... question no more actual. -- Best regards, Yuri On Sep 30, 1:44 pm, shadow wrote: > Hi all, > >    Could some one help me to understand why OMX_MPEG-4_Decoder may not > release media samples, which were sent from mine OpenCore MKV node? > > here is some pa