[android-porting] Re: opencore test cases issue

2010-03-08 Thread genxsol
just Compiled the opencore outside Android, how do i test it? On Feb 25, 2:13 pm, RaviY wrote: > That is correct. > > On Feb 24, 1:44 am, arindam das wrote: > > > Hi Uander , > >                        I guess ur doing it correctly.While running the test > > cases already provided by the PVcore,

Re: [android-porting] Power button functionality (sleep/resume/wakeup)

2010-03-08 Thread Ashwin Bihari
Girish, I do have the power management code within the Kernel enabled since my screen timeout causes the system to go into the suspend state. I can then hit the Power button to wake up the system nicely. When I do press the Power button while the system is active, I don't see any messages related

Re: [android-porting] Power button functionality (sleep/resume/wakeup)

2010-03-08 Thread girish
did you check if hitting the power button locks the screen? You might need to look into that first... -Girish On Mon, Mar 8, 2010 at 9:20 AM, Ashwin Bihari wrote: > Girish, > > I do have the power management code within the Kernel enabled since my > screen timeout causes the system to go into t

[android-porting] Re: porting android to OMAP 3530 with Torpedo SOM

2010-03-08 Thread eric
Hi Deva, posting again, can i use the bootloader and the kernel available with Rowboat/beagle board. As my board is same based on 3530 referance platform. Thanks ruby On Mar 5, 7:40 pm, Deva wrote: > Hi Eric, > did u get my post below?? or do u have any sepcific question? > > [re-posting from p

[android-porting] Re: Regarding BT-OPP (file tranfer using OPUSH application) throughput

2010-03-08 Thread Baibai
YES I ever measured and improved the sharing performance during development. What you has pointed out match our current design: 1. There is concurrent thread, if UI activity is launched as visible. One is writing to database about the sharing progress, and the other querying to update the UI. So d

[android-porting] apply theme over setting application wide

2010-03-08 Thread Mycall
Hi all. I want to apply theme over setting application wide. So I implemented below code but there was no effect. Please give me help. 1. AndroidMenifest.xml -> added Widget.ListView style provided in android system and I changed style.xml file like below 2

Re: [android-porting] Re: porting android to OMAP 3530 with Torpedo SOM

2010-03-08 Thread Ashwin Bihari
I have support for the LogicPD Torpedo and SOM LV DevKits based on the Rowboat release and will be publishing my changes shortly..will send an email to this and the Rowboat mailing list for interested parties.. Regards -- Ashwin On Mon, Mar 8, 2010 at 6:02 AM, eric wrote: > Hi Deva, > posting a

Re: [android-porting] apply theme over setting application wide

2010-03-08 Thread Dianne Hackborn
On Mon, Mar 8, 2010 at 6:51 AM, Mycall wrote: > 1. AndroidMenifest.xml > > >android:icon="@drawable/ic_launcher_settings" >android:theme="@android:style/Widget.ListView" > That is not a theme, that is the style of a list view. Please see the various API demos for def

[android-porting] Re: Regarding BT-OPP (file tranfer using OPUSH application) throughput

2010-03-08 Thread Baibai
YES we ever measured the sharing performance. What you has pointed out match our current design: 1. If UI activity launched as visible, then database query will frequently conducted to refresh the progress bar; - So during sharing, performance is better if just keep OPP session in background; root

[android-porting] FAT32 file size limited to 2GB

2010-03-08 Thread Hedge
I am trying to play back 3GB videos from an SDHC card in OpenCORE v2.05 in Cupcake. The player crashes every time. ADB shell reports the file size to be a negative number (overflow). I believe the maximum file size on FAT32 is 4GB (2^32 - 1). The maximum size I can access on Android is actually 2G

[android-porting] ALSA Mixer commands and Hooks in alsa.conf

2010-03-08 Thread mesv
Hi guys I have a problem with ALSA. In principle it works fine, but not automated... I can set some controls on my mixer driver with alsa_amixer sset "AUX out" on perfectly and Android can play sound then. My question is, how do I get ALSA to do this automaticaly when it tries to open a playba

[android-porting] Re: opencore test cases issue

2010-03-08 Thread RaviY
http://android.git.kernel.org/?p=platform/external/opencore.git;a=blob;f=quick_start.txt;h=19eb9b6e282577a6fb1274746b5c566a277e4efe;hb=f1867b231dc4393a20790f645a5c115dc0259846 On Mar 8, 9:16 am, genxsol wrote: > just Compiled the opencore outside Android, > how do i test it? > > On Feb 25, 2:13 p

[android-porting] Re: Eclair's opencore does not compile

2010-03-08 Thread RaviY
As long as one of the recognizers is able to recognize the file, it should play. -Ravi On Mar 5, 11:22 am, genxsol wrote: > Yes, it successfully compiled the opencore with passthru. > > i need to test if passthru is really working but i dont see any DRM > file in /engines/player/test/data/  for

Re: [android-porting] ALSA Mixer commands and Hooks in alsa.conf

2010-03-08 Thread Misael Lopez
> I tried to make a hook in alsa.conf. Is this the right place for it? It should be 'asound.conf', you can check below link for reference: http://git.omapzoom.org/?p=platform/vendor/ti/zoom2.git;a=blob;f=asound.conf;h=6b3d6c1742559e3af1bac47e59b4d0bde6f9f839;hb=4ab009e3790922961d4bf3f8b4fd90f0e3ad8

[android-porting] Re: FAT32 file size limited to 2GB

2010-03-08 Thread Chris Stratton
The underlying file i/o c library calls are likely to be the common 32 bit signed versions unless someone specifically chose the 64 bit versions. On Mar 8, 1:13 pm, Hedge wrote: > I am trying to play back 3GB videos from an SDHC card in OpenCORE > v2.05 in Cupcake. The player crashes every time.

[android-porting] Re: video play on android-2.1_r1

2010-03-08 Thread abukustfan
Hi Andy, On android-2.1_r1 tag, external/opencore/android/ android_surface_output.cpp (Line 938) -processWriteResponseQueue(2); +processWriteResponseQueue(1); Now it works on my target board. Thanks. On Mar 4, 11:36 am, Andy Quan wrote: > The problem is probably caused by the p

[android-porting] Re: ALSA Mixer commands and Hooks in alsa.conf

2010-03-08 Thread mesv
> > I tried to make a hook in alsa.conf. Is this the right place for it? > > It should be 'asound.conf', you can check below link for > reference:http://git.omapzoom.org/?p=platform/vendor/ti/zoom2.git;a=blob;f=asou... > alsa.conf loads asound.conf if I understood that right. But does it mather