views:

93

answers:

2

I have been trying to find the source for Android's Camera class so that I can examine how it calls the drivers that it is supposed to interface with. The API that android provides is insufficient for my purposes, and I am hoping to be able bypass that API. However, I am having trouble finding any documentation, and am resorting to accessing the code that is supposed to be extremely open source for samples. I have been able to access the documentation here, the source for my specific phone here, and (what I thought was most promising) the source for Android libraries here. However, I have not been able to find android.hardware.Camera in this git repo, or any of these locations.

A: 

here it is I think ;)

Sephy
A: 

I'd say you might be better going here: http://android.git.kernel.org/?p=platform/frameworks/base.git;a=tree;f=core/java/android/hardware;hb=HEAD. This would be most the most up to date copy (official copy anyway) that you can find.

nEx.Software