blob: 1c40a039944e26a69e1797ec809611218e28fb1c [file] [log] [blame]
Eino-Ville Talvalad86a6882012-08-28 11:34:14 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_SERVERS_CAMERA_CAMERA2_CALLBACKPROCESSOR_H
18#define ANDROID_SERVERS_CAMERA_CAMERA2_CALLBACKPROCESSOR_H
19
20#include <utils/Thread.h>
21#include <utils/String16.h>
22#include <utils/Vector.h>
23#include <utils/Mutex.h>
24#include <utils/Condition.h>
25#include <gui/CpuConsumer.h>
26#include "Parameters.h"
Igor Murashkin7efa5202013-02-13 15:53:56 -080027#include "camera/CameraMetadata.h"
Eino-Ville Talvalad86a6882012-08-28 11:34:14 -070028#include "Camera2Heap.h"
29
30namespace android {
31
32class Camera2Client;
Eino-Ville Talvalad09801b2013-04-23 15:16:57 -070033class CameraDeviceBase;
Eino-Ville Talvalad86a6882012-08-28 11:34:14 -070034
35namespace camera2 {
36
37/***
38 * Still image capture output image processing
39 */
40class CallbackProcessor:
41 public Thread, public CpuConsumer::FrameAvailableListener {
42 public:
Eino-Ville Talvalad09801b2013-04-23 15:16:57 -070043 CallbackProcessor(sp<Camera2Client> client);
Eino-Ville Talvalad86a6882012-08-28 11:34:14 -070044 ~CallbackProcessor();
45
46 void onFrameAvailable();
47
48 status_t updateStream(const Parameters &params);
49 status_t deleteStream();
50 int getStreamId() const;
51
Eino-Ville Talvalada6665c2012-08-29 17:37:16 -070052 void dump(int fd, const Vector<String16>& args) const;
Eino-Ville Talvalad86a6882012-08-28 11:34:14 -070053 private:
54 static const nsecs_t kWaitDuration = 10000000; // 10 ms
55 wp<Camera2Client> mClient;
Eino-Ville Talvalad09801b2013-04-23 15:16:57 -070056 wp<CameraDeviceBase> mDevice;
57 int mId;
Eino-Ville Talvalad86a6882012-08-28 11:34:14 -070058
59 mutable Mutex mInputMutex;
60 bool mCallbackAvailable;
61 Condition mCallbackAvailableSignal;
62
63 enum {
64 NO_STREAM = -1
65 };
66
67 int mCallbackStreamId;
68 static const size_t kCallbackHeapCount = 6;
69 sp<CpuConsumer> mCallbackConsumer;
70 sp<ANativeWindow> mCallbackWindow;
71 sp<Camera2Heap> mCallbackHeap;
72 int mCallbackHeapId;
73 size_t mCallbackHeapHead, mCallbackHeapFree;
74
75 virtual bool threadLoop();
76
77 status_t processNewCallback(sp<Camera2Client> &client);
Eino-Ville Talvalad09801b2013-04-23 15:16:57 -070078 // Used when shutting down
79 status_t discardNewCallback();
Eino-Ville Talvalad86a6882012-08-28 11:34:14 -070080};
81
82
83}; //namespace camera2
84}; //namespace android
85
86#endif