Searched refs:Camera2Client (Results 1 - 20 of 20) sorted by relevance

/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DCaptureSequencer.h33 class Camera2Client;
48 CaptureSequencer(wp<Camera2Client> client);
108 wp<Camera2Client> mClient;
133 typedef CaptureState (CaptureSequencer::*StateManager)(sp<Camera2Client> &client);
149 CaptureState manageIdle(sp<Camera2Client> &client);
150 CaptureState manageStart(sp<Camera2Client> &client);
152 CaptureState manageZslStart(sp<Camera2Client> &client);
153 CaptureState manageZslWaiting(sp<Camera2Client> &client);
154 CaptureState manageZslReprocessing(sp<Camera2Client> &client);
156 CaptureState manageStandardStart(sp<Camera2Client>
[all...]
H A DFrameProcessor.h33 class Camera2Client;
42 FrameProcessor(wp<CameraDeviceBase> device, sp<Camera2Client> client);
46 wp<Camera2Client> mClient;
52 void processNewFrames(const sp<Camera2Client> &client);
58 const sp<Camera2Client> &client);
62 const sp<Camera2Client> &client);
103 void callbackFaceDetection(sp<Camera2Client> client,
H A DBurstCapture.h29 class Camera2Client;
39 BurstCapture(wp<Camera2Client> client, wp<CaptureSequencer> sequencer);
50 wp<Camera2Client> mClient;
62 virtual status_t processFrameAvailable(sp<Camera2Client> &client);
H A DCallbackProcessor.h31 class Camera2Client;
44 CallbackProcessor(sp<Camera2Client> client);
58 wp<Camera2Client> mClient;
83 status_t processNewCallback(sp<Camera2Client> &client);
H A DBurstCapture.cpp25 #include "api1/Camera2Client.h"
31 BurstCapture::BurstCapture(wp<Camera2Client> client, wp<CaptureSequencer> sequencer):
68 sp<Camera2Client> client = mClient.promote();
107 status_t BurstCapture::processFrameAvailable(sp<Camera2Client> &/*client*/) {
H A DZslProcessor.h35 class Camera2Client;
52 ZslProcessor(sp<Camera2Client> client, wp<CaptureSequencer> sequencer);
85 wp<Camera2Client> mClient;
H A DZslProcessor3.h34 class Camera2Client;
50 ZslProcessor3(sp<Camera2Client> client, wp<CaptureSequencer> sequencer);
92 wp<Camera2Client> mClient;
H A DCaptureSequencer.cpp27 #include "api1/Camera2Client.h"
38 CaptureSequencer::CaptureSequencer(wp<Camera2Client> client):
51 mCaptureId(Camera2Client::kCaptureRequestIdStart),
190 sp<Camera2Client> client = mClient.promote();
226 sp<Camera2Client> &/*client*/) {
242 CaptureSequencer::CaptureState CaptureSequencer::manageDone(sp<Camera2Client> &client) {
246 if (mCaptureId >= Camera2Client::kCaptureRequestIdEnd) {
247 mCaptureId = Camera2Client::kCaptureRequestIdStart;
295 ATRACE_ASYNC_END(Camera2Client::kTakepictureLabel, takePictureCounter);
297 Camera2Client
[all...]
H A DJpegProcessor.h31 class Camera2Client;
46 JpegProcessor(sp<Camera2Client> client, wp<CaptureSequencer> sequencer);
H A DStreamingProcessor.h28 class Camera2Client;
43 StreamingProcessor(sp<Camera2Client> client);
96 wp<Camera2Client> mClient;
H A DCallbackProcessor.cpp26 #include "api1/Camera2Client.h"
34 CallbackProcessor::CallbackProcessor(sp<Camera2Client> client):
64 sp<Camera2Client> client = mClient.promote();
118 mCallbackConsumer->setName(String8("Camera2Client::CallbackConsumer"));
234 sp<Camera2Client> client = mClient.promote();
261 status_t CallbackProcessor::processNewCallback(sp<Camera2Client> &client) {
272 with Camera2Client code calling into StreamingProcessor */
369 size_t bufferSize = Camera2Client::calculateBufferSize(
377 "Camera2Client::CallbackHeap");
434 Camera2Client
[all...]
H A DFrameProcessor.cpp25 #include "api1/Camera2Client.h"
32 sp<Camera2Client> client) :
66 sp<Camera2Client> client = mClient.promote();
97 const sp<Camera2Client> &client) {
242 const sp<Camera2Client> &client) {
362 void FrameProcessor::callbackFaceDetection(sp<Camera2Client> client,
375 Camera2Client::SharedCameraCallbacks::Lock
H A DZslProcessor3.cpp35 #include "api1/Camera2Client.h"
44 sp<Camera2Client> client,
137 sp<Camera2Client> client = mClient.promote();
201 client->registerFrameListener(Camera2Client::kPreviewRequestIdStart,
202 Camera2Client::kPreviewRequestIdEnd,
216 sp<Camera2Client> client = mClient.promote();
248 sp<Camera2Client> client = mClient.promote();
292 sp<Camera2Client> client = mClient.promote();
H A DStreamingProcessor.cpp34 #include "api1/Camera2Client.h"
41 StreamingProcessor::StreamingProcessor(sp<Camera2Client> client):
47 mPreviewRequestId(Camera2Client::kPreviewRequestIdStart),
49 mRecordingRequestId(Camera2Client::kRecordingRequestIdStart),
92 sp<Camera2Client> client = mClient.promote();
628 if (mPreviewRequestId >= Camera2Client::kPreviewRequestIdEnd) {
629 mPreviewRequestId = Camera2Client::kPreviewRequestIdStart;
632 if (mRecordingRequestId >= Camera2Client::kRecordingRequestIdEnd) {
633 mRecordingRequestId = Camera2Client::kRecordingRequestIdStart;
675 sp<Camera2Client> clien
[all...]
H A DZslProcessor.cpp35 #include "api1/Camera2Client.h"
43 sp<Camera2Client> client,
122 sp<Camera2Client> client = mClient.promote();
142 mZslConsumer->setName(String8("Camera2Client::ZslConsumer"));
205 client->registerFrameListener(Camera2Client::kPreviewRequestIdStart,
206 Camera2Client::kPreviewRequestIdEnd,
271 sp<Camera2Client> client = mClient.promote();
H A DJpegProcessor.cpp30 #include "api1/Camera2Client.h"
39 sp<Camera2Client> client,
90 mCaptureConsumer->setName(String8("Camera2Client::CaptureConsumer"));
104 new MemoryHeapBase(maxJpegSize, 0, "Camera2Client::CaptureHeap");
/frameworks/av/services/camera/libcameraservice/api1/
H A DCamera2Client.cpp17 #define LOG_TAG "Camera2Client"
28 #include "api1/Camera2Client.h"
49 Camera2Client::Camera2Client(const sp<CameraService>& cameraService, function in class:android::Camera2Client
70 status_t Camera2Client::initialize(camera_module_t *module)
153 Camera2Client::~Camera2Client() {
155 ALOGV("~Camera2Client");
164 status_t Camera2Client::dump(int fd, const Vector<String16>& args) {
387 void Camera2Client
[all...]
H A DCamera2Client.h48 class Camera2Client : class in namespace:android
85 Camera2Client(const sp<CameraService>& cameraService,
95 virtual ~Camera2Client();
109 * Interface used by independent components of Camera2Client.
/frameworks/av/services/camera/libcameraservice/
H A DAndroid.mk30 api1/Camera2Client.cpp \
H A DCameraService.cpp47 #include "api1/Camera2Client.h"
691 client = new Camera2Client(this, cameraClient,

Completed in 518 milliseconds