[android-developers] Re: [android-kernel] repo intialization

2011-01-11 Thread Deva R
i wanted to initialize the repo in specific folder. whenever  i initialized the  repo . it initialize in home folder only even i make the directory and run the command. No such restrictions, and we can chose any directory we want. whole project tree location depends on where we do repo

[android-developers] Re: [android-porting] can't access SurfaceFlinger

2010-12-10 Thread Deva R
still the permission is failing on Permission.check() http://git.omapzoom.org/?p=platform/frameworks/base.git;a=blob;f=libs/surfaceflinger/SurfaceFlinger.cpp;h=6079a628f00762ed665205986aa6756617271422;hb=refs/heads/p-froyo#l1637 is this apk built separtely outside system build?? from past threads

[android-developers] Re: [android-porting] how to set the SeekBar more narrow?

2010-12-01 Thread Deva R
seekbar of froyo video player?? GUI and video control of video players lies in packages/apps/Gallery3D/src/com/cooliris/media seek bar and update happens at http://git.omapzoom.org/?p=platform/packages/apps/Gallery3D.git;a=blob;f=src/com/cooliris/media/TimeBar.java#l347

[android-developers] Re: [android-porting] Patches in Android

2010-11-21 Thread Deva R
when u talk about android kernel = only board support patches are required to make it work on a platform. note: for kernel.org linus's kernel tree = u need android patchset and your platform patches. I was just wondering if someone could explain to me the actual need of patching the Android

[android-developers] Re: [android-porting] how to present the renderbuffer on the screen?

2010-11-17 Thread Deva R
i have a rough overview To post data to screen = u need to have a surfaceflinger client handle and post your buffer contents to surfaceflinger, which composes final framebuffer to display on LCD. see if attached demo helps (source: http://people.debian.org.tw/~olv/surfaceflinger/ ) -- Regards,

[android-developers] Re: [rowboat] Gallery app cannot play the video

2010-10-13 Thread Deva R
When I checked the Logcat, I noticed the two applications were issuing different Intents. Intent is same., except that minor diff what u see is = file argument is absolute path in file manager, and in case of gallery app, relative clip database path is passed.. Its good as long as

[android-developers] Re: Stagefright Mediaextractor: how to detect interlaced streams in video files?

2010-10-04 Thread Deva R
, 2010 at 4:14 PM, Deva R r.deva...@gmail.com wrote: Hi, Is it possible to detect scan type (progressive or interlaced) of a video file in stagefright? I see below listed fields are query-able with metadata of file through stagefright, but not scan-type which i guess is avaiable in MP4 file

[android-developers] Re: [android-porting] Need info on LOCAL_CFLAGS

2010-09-17 Thread Deva R
Android build system passes these flags to compiler while building., These are local to module being built., and roughly, whole heirarchy is like: - lots of CFLGAS initialized by default in .mk files under MYDROID/build/* folder - COMMON_GLOBAL_CFLAGS defined in platform board files (sample -

[android-developers] Stagefright Mediaextractor: how to detect interlaced streams in video files?

2010-09-07 Thread Deva R
Hi, Is it possible to detect scan type (progressive or interlaced) of a video file in stagefright? I see below listed fields are query-able with metadata of file through stagefright, but not scan-type which i guess is avaiable in MP4 file header. Any hint on how to detect scan-type of video file

[android-developers] Re: Eclair: MovieView App to put into background like Music App.

2010-05-30 Thread Deva R
guys, any hints for this issue? On Thu, May 27, 2010 at 5:07 PM, Deva R r.deva...@gmail.com wrote: Hi, Android Music app (com.android.music) shall reamin active (continue playing music) in background, but not any other apps (say browser cant be put in background)? Is it possible to have

[android-developers] Eclair: MovieView App to put into background like Music App.

2010-05-27 Thread Deva R
Hi, Android Music app (com.android.music) shall reamin active (continue playing music) in background, but not any other apps (say browser cant be put in background)? Is it possible to have android movie player (com.android.camera.MovieView) to behave in similar fashion? My requirement is - to

[android-developers] Re: [android-porting] Re: Disable hardware codecs

2010-05-04 Thread Deva R
, probably the first step could be to verify if the audio format is actually supported, take a look at the supported OMX roles (tComponentName): platform/hardware/ti/omx/system/src/openmax_il/omx_core/src/OMX_core.c Thanks, Ricardo On Mon, May 3, 2010 at 7:54 AM, Deva R r.deva...@gmail.com wrote

[android-developers] Re: Disable hardware codecs

2010-05-03 Thread Deva R
[+porting list] you can delete ./system/etc/01_Vendor_ti_omx.cfg in your file system, so as to use SW codecs from PVOMX components (picked up by ./system/etc/pvplayer.cfg). On Mon, May 3, 2010 at 6:23 PM, Uander uandro...@gmail.com wrote: Hello   , I have a file a audio/3gp file that I can

[android-developers] Re: [android-porting] CTS not detecting Zoom2 device

2010-04-15 Thread Deva R
Hi, Can you make sure of adb bridge, with emulator and zoom seperately one at a time? I guess the tag emulator-5554 is used by zoom2 too.. Pls check http://omappedia.org/wiki/Android_Debugging#Debugging_on_Zoom2_with_Eclipse_ADT On Thu, Apr 15, 2010 at 3:49 PM, Uander uandro...@gmail.com

[android-developers] Re: [android-porting] [PM] about late resume, when PowerManagerService write on to /sys/power/state to call late resume?

2010-04-14 Thread Deva R
when the PowerManagerService( PowerManagerSerivce.java) write on to /sys/power/state (using SetScreenState(true) ), Note that in android (for that matter, universally in java) java applications cant access system resources (sys/power/state file in this case) directly, as they have to bypass VM