[android-porting] Capturing Camera data @ OMX interface

2011-12-16 Thread Girish H T
t;hMFC, IOCTL_MFC_ENC_EXE, &EncArg); * ** *..* } Regards Girish -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Gingerbread Porting on Zoom3

2011-12-05 Thread Girish H T
Hi All, This may be outdated question. Kindly help. Has any one succeded in porting GB on Zoom3 ? If so what are the issues faced ? Is there any official TI release for the same. Any links would be helpful. Regards Girish -- unsubscribe: android-porting+unsubscr...@googlegroups.com website

[android-porting] Re: Disable Hardware Composition

2011-12-02 Thread Girish
roperty) == 0) { LOGW("H/W composition disabled"); attribs[2] = EGL_CONFIG_CAVEAT; attribs[3] = EGL_SLOW_CONFIG; } Correct me if my understanding is wrong. BTW emulator doesnt have h/w accelarator. Then how it is rendering ? Regards Girish -- unsub

[android-porting] Disable Hardware Composition

2011-12-01 Thread Girish
ion as well. Regards Girish -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Re: Memory leak in android native code

2011-11-25 Thread Girish
nd port it on android and use it. Regards Girish lavanya wrote: > Hi, > > Is there any method to check native heap memory leak other than DDMS > Native Heap tab? > > with regards, > Lavanya -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Re: Frame buffer , Hardware overlay, rendering

2011-11-13 Thread Girish
But how the video renderer is able to write into same framebuffer memory area (Logically there is only 1 hardware display) as we can see on the device. Regards Girish -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] Frame buffer , Hardware overlay, rendering

2011-11-10 Thread Girish
Hi Matt, Thanks for clarification. So who does the final rendering after merging ? Is it user accessible ? As per my initial understanding the merging happens in surface flinger and given to frame buffer. But i was wrong. Kindly clarify. Regards Girish -- unsubscribe: android-porting

[android-porting] Frame buffer , Hardware overlay, rendering

2011-11-10 Thread Girish H T
still not able to understand how the video buffer is rendered seperately without frame buffer memory area. Could some one clarify how exactly the hardware overlaid rendering happens without directly writing to the frame buffer memory area. Is that area be accessible ? Regards Girish

[android-porting] Re: SurfaceFlinger implementation

2011-09-27 Thread Girish
opportunity for doing it neatly. Regards Girish On Sep 28, 2:44 am, Dianne Hackborn wrote: > No.  And there is no guarantee about what the format will be, in fact it may > not be anything you coud possibly interpret (such as non-planar). > > > > > > > > > > On Tue, Se

[android-porting] Re: SurfaceFlinger, Frame buffer device, Overlays

2011-09-27 Thread Girish
Hi Steve, Is it not possible to tap the composed screen data at the framework ? If yes where exactly in the framework i can tap this data !! Regards Girish -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Re: SurfaceFlinger implementation

2011-09-27 Thread Girish
Hi, Can some help me with the query ? Regards Girish On Sep 27, 2:51 pm, Girish wrote: > Dear all, > > Is it possible to tap the composed data which is given to framebuffer > at android framework level ? In which format it will be RGB565 ? > > I tried

[android-porting] Re: SurfaceFlinger implementation

2011-09-27 Thread Girish
r_t* buffer) { int res = fb->post(fb, handle); fwrite(handle, sizeof(char),fb->width*fb->height*3/2 ,fpRGB); } But this doesnt work. Regards Girish -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] MTP support in Stagefright

2011-02-21 Thread Girish
Dear team, Is there any support for MTP (Media transfer protocol) in Stagefright as of now? Regards Girish -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Re: Stagefright or OpenCORE for Gingerbread ?

2011-02-21 Thread Girish
Stagefright ? Please help me out in identifying the same. Regards Girish -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Stagefright or OpenCORE for Gingerbread ?

2011-02-21 Thread Girish
me out. What is the current status of the Stagefright? I read in one of the threads that there are issues w.r.t to streaming on Stagefright, are those fixed ? Any major issues with Stagefright ? Please help me out in identifying the same. Regards Girish -- unsubscribe: android-porting+unsubscr

[android-porting] Re: Error while invoking hardware decoder from JNI

2011-02-15 Thread Girish
Hi, Even we faced similar kind of problem for accessing some other hardware. It works good when tested independently but when integrated it fails.. Please check at userleve if you have read/write access to device or not. Regards Girish On Feb 12, 8:30 am, Haojun Zhou wrote: > Hi all, &g

[android-porting] WxWidgets on android

2010-08-12 Thread Girish
then what would the binary has to be packaged as for it to run on android. I saw few links but not able to get any hints, Please reply. http://old.nabble.com/JIT-on-ARM-td25608943.html Regards Girish -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com

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 syste

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

2010-02-26 Thread girish
any early_suspend dumps on the terminal? if it does and doesn't go any further to suspend to RAM that means someone is holding a wake_lock. -Girish > > > > > -- Forwarded message -- > From: Ashwin Bihari > Date: Fri, Feb 26, 2010 at 8:41 AM > Subject

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

2010-02-25 Thread girish
I guess you intend to power off the device when you hit the power button right? First, the keycode as you mentioned should map Android power key. Secondly, you should have proper hook in baseport level for pm_power_off() for DEVICE OFF. -Girish On Wed, Feb 24, 2010 at 9:16 AM, Ashwin Bihari

Re: [android-porting] Re: Ported android patches to 2.6.31. Boots fine with non android FS. Panics with Android FS (images)

2009-11-22 Thread girish
Shivappa, What's the bootargs used? Girish On Sun, Nov 22, 2009 at 10:30 AM, Shivappa wrote: > Hi Sreekanth, > > Here are the console logs just before the panic. Note that I did > create /dev/console, still for some reason, I get a console message > saying unable to

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

[android-porting] native camera access

2009-11-03 Thread Girish
proper approach, Can any one suggest ? Regards Girish -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Re: application with root permssion

2009-10-06 Thread Girish Tatti
Hi, and how is the permission set for an application ? >>Please see Androidmanifest.xml for application permissions. . Girish On Oct 7, 3:53 am, Dianne Hackborn wrote: > The standard platform doesn't allow applications to run as root.  Heck, not > even the core system process

[android-porting] Re: Integrating gStreamer to Android

2009-09-09 Thread Girish Tatti
/prajnashi Regards Girish On Sep 4, 9:58 am, Kaushik Prajapati wrote: > Hi All, > > I am currently running an Android on beagleboard without gStreamer in > it. Now i got the gStreamer code base and  I want to include gStreamer > on my Android. Is there any guide or instruction ava

[android-porting] Re: omap

2009-03-29 Thread girish
here you go * http://focus.ti.com/general/docs/wtbu/wtbudocumentcenter.tsp?templateId=6123&navigationId=12667 *<http://focus.ti.com/general/docs/wtbu/wtbudocumentcenter.tsp?templateId=6123&navigationId=12667> -Girish On Sun, Mar 29, 2009 at 3:10 AM, susanner wrote: > IS

[android-porting] Re: Why was bionic/libc/include/sys/shm.h removed?

2009-03-25 Thread Girish
Can you tell me the file i look into for using binder ipcs ? are these similar to message queues ? Girish --~--~-~--~~~---~--~~ unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting -~--~~~~--~~--~--~---

[android-porting] Re: Why was bionic/libc/include/sys/shm.h removed?

2009-03-25 Thread Girish
Can you tell in particular which native c application (open_src/ external) uses binder IPC ? Girish --~--~-~--~~~---~--~~ unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting -~--~~~~--~~--~--~---

[android-porting] Re: Why was bionic/libc/include/sys/shm.h removed?

2009-03-25 Thread Girish
Is there any other alternative for inter thread communication mechanism supported by android ? what about the current native apps which may (my guess) be using message queues ? how are they going to be replaced. Suggest some other alternative mechanism. Girish

[android-porting] Re: Why was bionic/libc/include/sys/shm.h removed?

2009-03-25 Thread Girish
Is this ashmem can be used for inter thread communication also ? Is it similar to system V message queues ? Where can i find the documentation on this ? Any examples would be helpful. Regards Girish --~--~-~--~~~---~--~~ unsubscribe: android-porting+unsubscr

[android-porting] Re: Why was bionic/libc/include/sys/shm.h removed?

2009-03-25 Thread Girish
For ARM is this available or removed is my doubt. The patch talks of "Add missed IPC syscalls for x86" Regards Girish --~--~-~--~~~---~--~~ unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting -~--~~~~--~~--~--~---

[android-porting] Re: Why was bionic/libc/include/sys/shm.h removed?

2009-03-24 Thread Girish
Hi, In cupcake (or any other branch) system V message queue wont be supported what ? What is the reason for removing them ? Is there any alternative for this ? Regards Girish On Mar 25, 6:57 am, Jean-Baptiste Queru wrote: > Very sorry, I have no visibility over that. > > JBQ >

[android-porting] Re: Integrating 3rd party static library

2009-03-06 Thread Girish
See this thread, i think this can be helpful http://groups.google.com/group/android-framework/browse_thread/thread/a8b67be37a52101a?q=#019d20de15836c54 Regards Girish --~--~-~--~~~---~--~~ unsubscribe: android-porting+unsubscr...@googlegroups.com website: http

[android-porting] Re: Tool chain for getting so

2009-03-04 Thread Girish
U can use Normal android build system for this. It will take care of your problem Refer to any of the projects in mydroid/external folder.You will get many examples. BTW android uses arm-eabi-gcc toolchain. Regards Girish On Mar 4, 5:05 pm, "Syed Malgimani" wrote: > Hi Exper

[android-porting] Re: turning off android power management

2009-02-23 Thread girish
[mailto: >> android-port...@googlegroups.com] *On Behalf Of *neo.driz...@gmail.com >> *Sent:* 2009年2月21日 13:24 >> *To:* android-porting@googlegroups.com >> *Subject:* [android-porting] Re: turning off android power management >> >> Just do following on ur debug termi

[android-porting] Re: How to develop more than 20 timer parallely..

2009-02-17 Thread Girish
s ? or user has to sort them in order ? Regards Girish On Feb 12, 6:39 pm, David Turner wrote: > Yes, it is, but frankly you should be using a single SIGEV_THREAD timer with > your own sorted timer list > > On Thu, Feb 12, 2009 at 2:14 PM, Girish wrote: > > > Hi, > >

[android-porting] Re: timer_create problem

2009-02-17 Thread Girish
Hi David, Can this bug be updated in both cupcake and open source ? Can you send the quick fix for a solution temporarily . May be u can attach ! Regards Girish --~--~-~--~~~---~--~~ unsubscribe: android-porting+unsubscr...@googlegroups.com website: http

[android-porting] Re: Power Management: LCD Back light resume 1 min after wakeup!

2009-02-13 Thread girish
LCD backlight interface is thourgh leds, you may need to check leds interface and hook to it in the kernel space. -girish On Thu, Feb 12, 2009 at 11:27 PM, Rajesh N wrote: > Hi, > > I am working on i.MX31 freescale board, Android power management has some > serious issues! > &

[android-porting] Re: How to develop more than 20 timer parallely..

2009-02-12 Thread Girish
Hi, Is SIGEV_THREAD is part of open source and cupcake code now ? With SIGEV_THREAD also i guess we should be able to create 32 timers per- process right ? Can any one point me out using threads over signals for timer operation. Regards Girish

[android-porting] Re: How to develop more than 20 timer parallely..

2009-02-02 Thread Girish
Hi Davi, Could you suggest any links on the web to look into ! We need around 25 timers which can run in parallel. Similar functionality what POSIX timers support. Regards Girish On Feb 2, 5:10 pm, David Turner wrote: > I suggest you to look at POSIX's timer_create() and related f

[android-porting] Re: How to develop more than 20 timer parallely..

2009-02-01 Thread Girish
... Will the above explantion holds good in this also ? can you please tell us. Regards Girish ... Like this Timer1 and Timer2 will execute in parallel. On Feb 2, 8:44 am, David Given wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Girish wrote: > >

[android-porting] Re: How to develop more than 20 timer parallely..

2009-02-01 Thread Girish
explain more about how to acheive this using sorted list ? U mean we need to sort them (ascending or descending )and execute ? I didnt get this point. Please explain this point ... Do your app using parallel timers ? Regards Girish On Feb 2, 8:03 am, David Given wrote: > -BEGIN PGP

[android-porting] Re: How to develop more than 20 timer parallely..

2009-02-01 Thread Girish
-SIGRTMIN = 32) I hope you can understand the scenario, Is there anyways to use a single user space (SIGUSR1) signal to hanldle multiple timers in parallel ? Is there anything like soft timers ? Can you give us some clues ? Regards Girish On Feb 2, 7:33 am, David Turner wrote: > the cupcak

[android-porting] Re: How to develop more than 20 timer parallely..

2009-02-01 Thread Girish
Hi David, As middleware application demands the timeout values cant be kept in sorted list. Say i have timeout values 1,3000,15,17000 .so it cant workout ... Is there any alternative way to acheive this ? Regards Girish On Feb 2, 7:23 am, David Given wrote: > -BEGIN PGP SIG

[android-porting] Re: How to develop more than 20 timer parallely..

2009-02-01 Thread Girish
ing one thread per timer, each one simply doing a timed wait ? For now please explain us how to develop timer functionality in parallel. Regards Girish On Feb 1, 8:26 am, David Turner wrote: > Maybe by using a single signal with a sorted timer queue ? > Or using one thread per timer, each o

[android-porting] Re: inverted touch on ads7846 chip

2009-01-28 Thread girish
the cupcake power should be properly enabled in kernel space. 2009/1/28 virstud > > I have whis problem too. > repo sync kernel > 2.6.27 > pxafb work. > enable android power drv, PM drv > keypad work. > spi driver work. > ads7846 (tsc2046) work. > On touching the > touchcreen at any location th

[android-porting] Re: Starting new group for Android OpenMax

2008-12-17 Thread Girish
welcome ! Anyways thanks for the suggestion. Regards Girish On Dec 17, 6:30 pm, "Android PT" wrote: > Girish, > > I agree with Dave. This is going to be an overhead to monitor a new group. > I can understand that we get lot of emails and scanning through them for > OpenMa

[android-porting] Starting new group for Android OpenMax

2008-12-17 Thread Girish
Dear all, Starting a new group for Android Openmax related queries, Intrested ones please join this new group. Regards Girish --~--~-~--~~~---~--~~ unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting -~--~~~~--~~--~--~---

[android-porting] Re: Android on OMAP

2008-12-12 Thread girish
checkout www.omapzoom.org for android project... -Girish S G On Fri, Dec 12, 2008 at 3:49 PM, apoorv wrote: > > Is there any material available for porting android to OMAP? > Apoorv > > > --~--~-~--~~~---~--~~ unsubscribe: androi

[android-porting] Re: Unable to get the Android source code.

2008-12-11 Thread Girish
://android.git.kernel.org/?p=platform/frameworks/base.git;a=snapshot;h=HEAD;sf=tgz Hope this helps. Regards Girish On Dec 10, 10:13 pm, Morris <[EMAIL PROTECTED]> wrote: > Hi Ram: > > I also face this issue. > My stystem is vmware + ubuntu 8.04. > > Now, I solve it. >

[android-porting] Re: Building OpenCore

2008-12-10 Thread Girish
For player Push these executables and a sample file (say test.mp4) to / data Go to adb shell adb shell Then try giving pvplayer_engine_test -test 803 803 -source test.mp4 -logfile -logall" Let us know if there anything we need to do extra for running on x86. Regards Girish On Dec 11, 12:

[android-porting] How does OpenCORE PVMF work ?

2008-12-10 Thread Girish H T
replace software codecs with hardware codecs ? Why OMX complaince is only for decoder ? No OMX complaince for encoder, parser ... ? Please share the info.. Regards Girish --~--~-~--~~~---~--~~ unsubscribe: [EMAIL PROTECTED] website: http://groups.google.com/group

[android-porting] Re: Building OpenCore

2008-12-08 Thread Girish
Place a file with name test.mp4 in the same directory as the defualt file name it expects is test.mp4 Checkout this option.. May be helpful Regards Girish On Dec 8, 6:07 am, getandroid <[EMAIL PROTECTED]> wrote: > hi, > > finally, it get execute permissions, but i get follo

[android-porting] Re: About android touchscreen

2008-11-11 Thread girish
has plugged in mmap interface, need to check. --Girish SG On Tue, Nov 11, 2008 at 9:17 AM, Anson <[EMAIL PROTECTED]> wrote: > pointercal only can create by ts_calibrate ? > > If you wann't to calibrate the screen on 1st boot, you may should add > ts_calibrate program into yo