[android-porting] Re: how to integrate s/w codec like h/w codec (omx plugin) into stagefright

2011-03-08 Thread kismeter
On Mar 8, 10:44 pm, Joerie de Gram wrote: > You can use c++filt to demangle C++ symbol names. The method you're > looking for is android::createOMXPlugin(). > > Joerie thanks but why add "_ZN7*" or when add "_ZN" -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://group

[android-porting] Re: how to integrate s/w codec like h/w codec (omx plugin) into stagefright

2011-03-08 Thread kismeter
do u know about h/w codec integrate? I have a problem, somethink can't understand @ln:51 frameworks/base/media/libstagefright/omx/OMXMaster.cpp void OMXMaster::addVendorPlugin() { mVendorLibHandle = dlopen("libstagefrighthw.so", RTLD_NOW); if (mVendorLibHandle == NULL) { return;

[android-porting] Drawing procedure in Android (unlock the screen the activity is relayouting

2011-02-22 Thread kismeter
Hi, I met a problem, when I unlock the screen, the activity is relayouting (E.G camera activity, settings activity) I want to the keyguardview don't remove so quickly, just wait this kind activity drawing complete. anyone have ideas? I add a thread sleep at hide()@KeyguardViewManager.java /*

[android-porting] About Android Framebuffer Double-Buffering

2011-02-16 Thread kismeter
Hi, As I know the android each surface is double-bufferied, the front buffer is taken by surfaceflinger for composition, while the back buffer is used to perform drawing. But now I have a stupid question. if the front view (front buffer) is portrait, and the back view (back buffer) is landscape. ho

[android-porting] screen flash display pre view when screen on

2011-02-16 Thread kismeter
Hello, I ported android to my own board. Now, have a problem. I press power key, the screen off, then press power key again, the Lockscreen should display immediately, but the screen flash display the pre view and then display lockscreen. Anyone have ideas? Thanks in advance. -- unsubscribe: andr

[android-porting] unlock phone on camera detail view, the display flash twice

2011-02-10 Thread kismeter
I leave the camera detail view on and the phone locks, wait about 5-6 seconds, and go to unlock the phone. The camera view would be vertical then horizontal, and suddenly become black then the view restore to the status when I leave. in this process, the view size would adjust twice. I trace the Wi