[android-porting] Re: How to integrate 3rd party buildsystem into Android BuidSystem

2009-11-17 Thread Neeraj Agrawal
Thanks Chih-Wei Was able to call native build system by invoking below line from a Android.mk (as passing paths for CC, AS, AR, RANLIB and LD) $(shell cd external//build && $(MAKE)) At the end of build (during linking) following error is reported:- /prebuilt/linux-x86/toolchain/i686-unknown-linux

[android-porting] map lib error issue

2009-11-17 Thread tstanly
hi guys, I was porting the android os in x86-based and did it success, and pulled the map.jar from emulator and make it into my image file, then, I was design my map application, and eveything is ok but just one API that always be error, that's getFromLocation(String location,int maxResult)"""

[android-porting] Re: Compiling OpenCore with gcc

2009-11-17 Thread RaviY
I believe we haven't tried to compile for 64-bit yet. -Ravi On Nov 16, 2:12 pm, jeffb wrote: > Compiling OpenCore (that is, pvplayer_engine_test ) on 64-bit machines > with gcc 4.1.2 on plain Linux, leads to compiler errors related to > casting addresses into 32-bits: “oscl_vector.h:182: error:

[android-porting] Re: Testing OpenCore changes without linking Android

2009-11-17 Thread RaviY
- pvplayer_engine_test is the right way. - pvplayer_engine_test uses files as sinks. So, the generated output will be in the form of yuv/wav files. -Ravi On Nov 16, 2:01 pm, jeffb wrote: > To understand OpenCore’s source code structure and flow, I wanted to > run it by itself, separate from Andr

[android-porting] Re: What are the required interfaces to load and register a custom parser node and recognizer

2009-11-17 Thread RaviY
You would need to look at PVMFNodeInterface and PVMFNodeInterfaceImpl. PVMFNodeInterface --- This is the actual interface. PVMFNodeInterfaceImpl --- This is the base node implementation. You can create a node from scratch by deriving from PVMFNodeInterface. Or, you can derive from PVMFNodeInterfa

[android-porting] Re: PV Architecture Question

2009-11-17 Thread RaviY
That is incorrect. You can have multiple nodes in the pipeline. It all depends on how you connect the nodes. For example, in streaming scenarios, we have multiple nodes involved on the source end. Say you are doing a http streaming session, then, we have the protocolengine node + downloadmanager no

[android-porting] using pcaket video codecs in commercial projects, not android based

2009-11-17 Thread Akio
Dear Sir: if I try to use packet video codecs in commercial projects, not android based sw framework, is it ok? I know i have to pay the paten holder. do I have to pay to packetvideo corp? BTW, I also do some modification of packet video codecs to fit the xgcc enviroment an

[android-porting] Re: using pcaket video codecs in commercial projects, not android based

2009-11-17 Thread RaviY
NOTE: I am not a lawyer. PacketVideo has released the codecs under Apache 2.0 license. For your immediate reference, the Apache 2.0 license can be found at http://www.apache.org/licenses/LICENSE-2.0.html. From what I understand of the license, you are free to use the code at your will. That being

[android-porting] App can not fullscreen display in a larger screen on my own Droid OS

2009-11-17 Thread guoluren
I try to build and run my own build Android on a device with x600*y800 LCD. I use my own OS to replace the origin OS. My OS home menu and built-in application are normally displayed as fullscreen. But when I run some third-party APK, it shows only x320*y480 in the middle top area. I believe there

[android-porting] Re: Porting Android SDK For large screen devices.

2009-11-17 Thread guoluren
I also met another issue with larger screen. I build my own android and replace origin Android on a device with 800x600 screen. My android home and built-in app can display as full screen. But 3rd-party apk and my app built by SDK can only display as 320x480. I suspect there is something wrong wit

[android-porting] error linking

2009-11-17 Thread Carlospg
Hello All, I´m trying to compile the SDK for mips, but I´m having next error while booting the board: bionic/linker/linker.c:883| ERROR: [ 1292 - failed to extend segment from 'libc.so' @ 0x7ef69000 (0xa9c0) ] bionic/linker/linker.c:1875| ERROR: 1292 could not load 'libc.so' bionic/linker

[android-porting] Re: What are the required interfaces to load and register a custom parser node and recognizer

2009-11-17 Thread jeffb
Ravi, Thanks for the reply. I understand the need to implement the PVMFNodeInterface as the baseline interface for a parser node. But I was wondering about the interfaces that must be implemented to enable a node (parser and recognizer functionality) to be registered dynamically (i.e. when opencore

Re: [android-porting] Re: Porting Android SDK For large screen devices.

2009-11-17 Thread Dianne Hackborn
That is the expected behavior. Those apps have not been updated to support large screens, so the system will display them in a postage stamp on the larger screen so they don't break. On Mon, Nov 16, 2009 at 10:05 PM, guoluren wrote: > I also met another issue with larger screen. I build my own

[android-porting] Re: What are the required interfaces to load and register a custom parser node and recognizer

2009-11-17 Thread RaviY
Did you look at the mp4 parser node/recognizer? http://android.git.kernel.org/?p=platform/external/opencore.git;a=tree;f=modules/linux_mp4;h=e3d550d29ee3d2070ddf4c8e791077f0d956043b;hb=582c0d57052faafdce3a57e47533d341d407418e -Ravi On Nov 17, 12:54 pm, jeffb wrote: > Ravi, > Thanks for the rep

[android-porting] Integrating eclair

2009-11-17 Thread Porting beginner
Hi, I have just get eclair from Google repo and try to integration in place of current Donut. repo init -u git://android.git.kernel.org/platform/manifest.git -b eclair. I have ARM based board on which Android ( 2.6.27 + DONUT ) is already running. Now when I integrate eclair ( same kernel 2.6.2

Re: [android-porting] App can not fullscreen display in a larger screen on my own Droid OS

2009-11-17 Thread girish
>> I believe there is something wrong with my Android OS configuration, Did you check if your OS touchscreen driver is passin' absolute events to the userland... -Girish On Mon, Nov 16, 2009 at 9:06 PM, guoluren wrote: > I try to build and run my own build Android on a device with x600*y800 >

[android-porting] Can I port android into any linux compatible development kit!

2009-11-17 Thread osama.gma
Hi All, I'm working on my graduation project which will be based on Android. I'm now searching for a suitable development kit. I was wondering if I can port android to any Linux 2.6 Compatible Development kit like this one for example: http://www.key21.cn/dz0/en/pro_web.asp?id=333&anclassid=7&anc

Re: [android-porting] App can not fullscreen display in a larger screen on my own Droid OS

2009-11-17 Thread Dianne Hackborn
As I already replied, this is the normal expected behavior of running old apps in compatibility mode. On Mon, Nov 16, 2009 at 7:06 PM, guoluren wrote: > I try to build and run my own build Android on a device with x600*y800 > LCD. > I use my own OS to replace the origin OS. My OS home menu and b

[android-porting] Re: Integrating eclair

2009-11-17 Thread jack
Hi, Post your logcat massages. You may try deleting the contents on /data and reboot the system. see the below discussion: http://groups.google.com/group/android-porting/browse_thread/thread/cd74cc4f77c43bb5 Regards, Jack On Nov 18, 3:53 am, Porting beginner wrote: > Hi, > > I have just get ecla

Re: [android-porting] Re: Integrating eclair

2009-11-17 Thread Porting beginner
On Tue, Nov 17, 2009 at 7:15 PM, jack wrote: > Hi, > Post your logcat massages. > You may try deleting the contents on /data and reboot the system. > see the below discussion: > > http://groups.google.com/group/android-porting/browse_thread/thread/cd74cc4f77c43bb5 > > Thanks jack, let me try , wi

[android-porting] pppd start

2009-11-17 Thread simon
Hi, all I want to start pppd in my system. So, I follow the advice in the maillist, but it still doesn't work. It said that Unable to start service ctl [pppd_gprs] uid: 1001. I found my problem was in the list too, but hadn't soloved. What i have done: init.rc setprop ro.radio.use-ppp yes (i