HomeSort by relevance Sort by last modified time
    Searched full:camera (Results 1 - 25 of 983) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Camera/res/xml/
camera_preferences.xml 18 xmlns:camera="http://schemas.android.com/apk/res/com.android.camera"
19 camera:title="@string/pref_camera_settings_category">
21 camera:key="pref_camera_flashmode_key"
22 camera:defaultValue="@string/pref_camera_flashmode_default"
23 camera:title="@string/pref_camera_flashmode_title"
24 camera:icons="@array/camera_flashmode_icons"
25 camera:largeIcons="@array/camera_flashmode_largeicons"
26 camera:entries="@array/pref_camera_flashmode_entries"
27 camera:entryValues="@array/pref_camera_flashmode_entryvalues" /
    [all...]
video_preferences.xml 18 xmlns:camera="http://schemas.android.com/apk/res/com.android.camera"
19 camera:title="@string/pref_camcorder_settings_category">
21 camera:key="pref_video_quality_key"
22 camera:defaultValue="@string/pref_video_quality_default"
23 camera:title="@string/pref_video_quality_title"
24 camera:largeIcons="@array/video_quality_largeicons"
25 camera:entries="@array/pref_video_quality_entries"
26 camera:entryValues="@array/pref_video_quality_entryvalues"/>
28 camera:key="pref_video_time_lapse_frame_interval_key
    [all...]
  /frameworks/base/libs/camera/
Camera.cpp 19 #define LOG_TAG "Camera"
26 #include <camera/Camera.h>
27 #include <camera/ICameraRecordingProxyListener.h>
28 #include <camera/ICameraService.h>
34 // client singleton for camera service binder interface
35 Mutex Camera::mLock;
36 sp<ICameraService> Camera::mCameraService;
37 sp<Camera::DeathNotifier> Camera::mDeathNotifier
    [all...]
  /frameworks/base/docs/html/training/camera/
cameradirect.jd 1 page.title=Controlling the Camera
17 <li><a href="#TaskOpenCamera">Open the Camera Object</a></li>
18 <li><a href="#camera-preview">Create the Camera Preview</a></li>
19 <li><a href="#TaskSettings">Modify Camera Settings</a></li>
23 <li><a href="#TaskReleaseCamera">Stop the Preview and Release the Camera</a></li>
28 <li><a href="{@docRoot}guide/topics/media/camera.html#custom-camera">Building
29 a Camera App</a></li>
34 <p>In this lesson, we discuss how to control the camera hardware directly usin
    [all...]
  /device/samsung/crespo/
ueventd.herring.rc 5 /dev/video0 0660 system camera
6 /dev/video1 0660 system camera
7 /dev/video2 0660 system camera
8 /dev/s3c-jpg 0660 system camera
  /external/chromium/chrome/common/extensions/docs/examples/api/tabs/
screenshot.zip 
  /packages/apps/Camera/
proguard.flags 2 -keep class * extends com.android.camera.CameraPreference {
6 -keep class com.android.camera.ActivityBase {
11 -keep class com.android.camera.VideoCamera {
18 @com.android.camera.OnClickAttr <methods>;
  /packages/apps/Camera/tests/
AndroidManifest.xml 18 package="com.android.camera.tests">
26 <instrumentation android:name="com.android.camera.CameraLaunchPerformance"
27 android:targetPackage="com.android.camera"
28 android:label="Camera Launch Performance">
31 <instrumentation android:name="com.android.camera.stress.CameraStressTestRunner"
32 android:targetPackage="com.android.camera"
33 android:label="Camera stress test runner">
37 android:targetPackage="com.android.camera"
38 android:label="Tests for Camera application."/>
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
Transform3dActivity.java 23 import android.graphics.Camera;
40 private Camera mCamera;
47 mCamera = new Camera();
59 final Camera camera = mCamera; local
63 rotate(centerX, centerY, camera, matrix, 32.0f);
66 rotate(centerX, centerY, camera, matrix, 12.0f);
69 rotate(centerX, centerY, camera, matrix, 52.0f);
72 rotate(centerX, centerY, camera, matrix, 122.0f);
86 private void rotate(float centerX, float centerY, Camera camera
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
camera_controller.h 11 #include "chrome/browser/chromeos/login/camera.h"
16 class CameraController: public Camera::Delegate {
22 // Called when new frame was captured by camera.
25 // Called when camera failed to initialize or get the next frame.
38 // Initializes camera and starts video capturing.
41 // Stops video capturing and deinitializes camera.
44 // Returns the last captured frame from the camera.
47 // Camera::Delegate implementation:
61 scoped_refptr<Camera> camera_;
66 // Counts how many times camera initialization failed
    [all...]
camera.h 26 // All communication with camera driver is performed on a separate camera
28 class Camera : public base::RefCountedThreadSafe<Camera> {
55 Camera(Delegate* delegate, base::Thread* thread, bool mirrored);
57 // Initializes camera device on camera thread. Corresponding delegate's
59 // nothing if camera is successfully initialized already. Sets the desired
60 // width and height of the frame to receive from camera.
63 // Uninitializes the camera on camera thread. Can be called anytime, an
    [all...]
  /packages/apps/Camera/tests/src/com/android/camera/
StressTests.java 17 package com.android.camera;
19 import com.android.camera.stress.ImageCapture;
20 import com.android.camera.stress.SwitchPreview;
21 import com.android.camera.stress.CameraLatency;
22 import com.android.camera.stress.CameraStartUp;
29 * Instrumentation Test Runner for all Camera tests.
34 * com.android.camera.tests/com.android.camera.CameraStressTestRunner
  /packages/experimental/CameraPreviewTest/
README 3 A small test app to exercise the camera in various modes in much the same way that GTalk video chat does.
5 Allows for testing the camera without having to spin up all of video chat.
  /frameworks/base/core/jni/
android_hardware_Camera.cpp 19 #define LOG_TAG "Camera-JNI"
30 #include <camera/Camera.h>
59 JNICameraContext(JNIEnv* env, jobject weak_this, jclass clazz, const sp<Camera>& camera);
68 sp<Camera> getCamera() { Mutex::Autolock _l(mLock); return mCamera; }
80 sp<Camera> mCamera; // strong reference to native object
110 sp<Camera> get_native_camera(JNIEnv *env, jobject thiz, JNICameraContext** pContext)
112 sp<Camera> camera; local
462 sp<Camera> camera = Camera::connect(cameraId); local
500 sp<Camera> camera; local
529 sp<Camera> camera = get_native_camera(env, thiz, NULL); local
545 sp<Camera> camera = get_native_camera(env, thiz, NULL); local
562 sp<Camera> camera = get_native_camera(env, thiz, NULL); local
596 sp<Camera> camera = get_native_camera(env, thiz, &context); local
642 sp<Camera> camera = get_native_camera(env, thiz, &context); local
672 sp<Camera> camera = get_native_camera(env, thiz, NULL); local
690 sp<Camera> camera = get_native_camera(env, thiz, NULL); local
699 sp<Camera> camera = get_native_camera(env, thiz, NULL); local
711 sp<Camera> camera = get_native_camera(env, thiz, NULL); local
722 sp<Camera> camera = get_native_camera(env, thiz, NULL); local
733 sp<Camera> camera = get_native_camera(env, thiz, NULL); local
749 sp<Camera> camera = get_native_camera(env, thiz, NULL); local
761 sp<Camera> camera = get_native_camera(env, thiz, NULL); local
774 sp<Camera> camera = get_native_camera(env, thiz, &context); local
790 sp<Camera> camera = get_native_camera(env, thiz, NULL); local
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
Camera_SizeTest.java 23 import android.hardware.Camera;
24 import android.hardware.Camera.Parameters;
29 @TestTargetClass(Camera.Size.class)
42 method = "Camera.Size",
46 if (Camera.getNumberOfCameras() < 1) {
50 Camera camera = Camera.open(0); local
51 Parameters parameters = camera.getParameters();
57 camera.release()
    [all...]
  /cts/tests/tests/permission/src/android/permission/cts/
CameraPermissionTest.java 19 import android.hardware.Camera;
27 * Tests for camera-related Permissions. Currently, this means
28 * android.permission.CAMERA.
40 class ShutterCallback implements Camera.ShutterCallback {
44 class RawPictureCallback implements Camera.PictureCallback {
45 public void onPictureTaken(byte [] rawData, Camera camera) { }
48 class JpegPictureCallback implements Camera.PictureCallback {
49 public void onPictureTaken(byte [] jpegData, Camera camera) {
    [all...]
  /development/tools/emulator/system/camera/
EmulatedQemuCameraDevice.h 22 * an emulated camera device connected to the host.
32 /* Encapsulates an emulated camera device connected to the host.
49 * device_name - Name of the camera device connected to the host. The name
50 * that is used here must have been reported by the 'factory' camera
51 * service when it listed camera devices connected to the host.
58 * Emulated camera device abstract interface implementation.
64 /* Connects to the camera device. */
67 /* Disconnects from the camera device. */
70 /* Starts capturing frames from the camera device. */
73 /* Stops capturing frames from the camera device. *
    [all...]
EmulatedCameraFactory.h 28 * instantiated and initialized when camera emulation HAL is loaded.
35 * emulator's 'camera' service. For every camera found out there it creates an
37 * cameras. In addition to the cameras reported by the emulator, a fake camera
38 * emulator is always created, so there is always at least one camera that is
41 * Instance of this class is also used as the entry point for the camera HAL API,
61 * Camera HAL API handlers.
65 /* Opens (connects to) a camera device.
70 /* Gets emulated camera information.
76 * Camera HAL API callbacks
    [all...]
  /frameworks/base/include/camera/
Camera.h 22 #include <system/camera.h>
23 #include <camera/ICameraClient.h>
24 #include <camera/ICameraRecordingProxy.h>
25 #include <camera/ICameraRecordingProxyListener.h>
31 * The direction that the camera faces to. It should be CAMERA_FACING_BACK
37 * The orientation of the camera image. The value is the angle that the
38 * camera image needs to be rotated clockwise so it shows correctly on the
42 * back-facing camera sensor is mounted in landscape. You are looking at
43 * the screen. If the top side of the camera sensor is aligned with the
45 * 90. If the top side of a front-facing camera sensor is aligned with th
    [all...]
  /packages/apps/Camera/src/com/android/camera/
CameraErrorCallback.java 17 package com.android.camera;
22 implements android.hardware.Camera.ErrorCallback {
25 public void onError(int error, android.hardware.Camera camera) {
26 Log.e(TAG, "Got camera error callback. error=" + error);
27 if (error == android.hardware.Camera.CAMERA_ERROR_SERVER_DIED) {
30 // new Camera object.
CameraHolder.java 17 package com.android.camera;
19 import static com.android.camera.Util.Assert;
21 import android.hardware.Camera.CameraInfo;
22 import android.hardware.Camera.Parameters;
33 * The class is used to hold an {@code android.hardware.Camera} instance.
36 * in {@code android.hardware.Camera}. The difference is if {@code keep()} is
38 * android.hardware.Camera} instance for a while, so if {@code open()} is
40 * android.hardware.Camera}.
42 * <p>This is used in switching between {@code Camera} and {@code VideoCamera}
47 private android.hardware.Camera mCameraDevice
    [all...]
  /external/qemu/android/camera/
camera-service.c 18 * Contains emulated camera service implementation.
27 #include "android/camera/camera-capture.h"
28 #include "android/camera/camera-format-converters.h"
29 #include "android/camera/camera-service.h"
33 #define D(...) VERBOSE_PRINT(camera,__VA_ARGS__)
34 #define D_ACTIVE VERBOSE_CHECK(camera)
40 #define T(...) VERBOSE_PRINT(camera,__VA_ARGS__
776 CameraDevice* camera; member in struct:CameraClient
    [all...]
camera-capture.h 21 * Contains declarations for video capturing API that is used by the camera
25 #include "camera-common.h"
27 /* Initializes camera device descriptor, and connects to the camera device.
34 * the camera driver. On Windows contains an index (up to 10) of the driver
35 * to use to communicate with the camera device.
37 * Initialized camera device descriptor on success, or NULL on failure.
41 /* Starts capturing frames from the camera device.
43 * cd - Camera descriptor representing a camera device opened i
    [all...]
  /development/pdk/docs/porting/
camera.jd 1 page.title=Camera
11 <li><a href="#androidCameraBuildingDriver">Building a Camera Library</a></li>
18 <p>Android's camera subsystem connects the camera application to the application framework and user space libraries, which in turn communicate with the camera hardware layer that operates the physical camera.</p>
19 <p>The diagram below illustrates the structure of the camera subsystem.</p>
23 <a name="androidCameraBuildingDriver"></a><h3>Building a Camera Library</h3>
25 <p>To implement a camera driver, create a shared library that implements the interface defined in <code>CameraHardwareInterface.h</code>. You must name your shared library <code>libcamera.so</code> so that it will get loaded from <code>/system/lib</code> at runtime. Place libcamera sources and <code>Android.mk</code> in <code>vendor/acme/chipset_or_board/libcamera/</code>.</p>
59 <p>The following diagram illustrates the sequence of function calls and actions necessary for your camera to preview.</p
    [all...]
  /development/libraries/stereocamera/
README.txt 1 Stereo Camera Libraries for Android.

Completed in 1578 milliseconds

1 2 3 4 5 6 7 8 91011>>