blob: 2283f28deca4bcf8f9561801440d7020548a7700 [file] [log] [blame]
Eino-Ville Talvalaea0d51b2012-08-28 01:25:43 -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
Eino-Ville Talvalada6665c2012-08-29 17:37:16 -070017#ifndef ANDROID_SERVERS_CAMERA_CAMERA2_JPEGPROCESSOR_H
18#define ANDROID_SERVERS_CAMERA_CAMERA2_JPEGPROCESSOR_H
Eino-Ville Talvalaea0d51b2012-08-28 01:25:43 -070019
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 Talvalaea0d51b2012-08-28 01:25:43 -070028
29namespace android {
30
31class Camera2Client;
Eino-Ville Talvala73bbd1f2012-09-26 10:45:47 -070032class MemoryHeapBase;
Eino-Ville Talvalaea0d51b2012-08-28 01:25:43 -070033
34namespace camera2 {
35
Eino-Ville Talvalada6665c2012-08-29 17:37:16 -070036class CaptureSequencer;
37
Eino-Ville Talvalaea0d51b2012-08-28 01:25:43 -070038/***
39 * Still image capture output image processing
40 */
Eino-Ville Talvalada6665c2012-08-29 17:37:16 -070041class JpegProcessor:
Eino-Ville Talvalaea0d51b2012-08-28 01:25:43 -070042 public Thread, public CpuConsumer::FrameAvailableListener {
43 public:
Eino-Ville Talvalada6665c2012-08-29 17:37:16 -070044 JpegProcessor(wp<Camera2Client> client, wp<CaptureSequencer> sequencer);
45 ~JpegProcessor();
Eino-Ville Talvalaea0d51b2012-08-28 01:25:43 -070046
47 void onFrameAvailable();
48
49 status_t updateStream(const Parameters &params);
50 status_t deleteStream();
51 int getStreamId() const;
52
Eino-Ville Talvalada6665c2012-08-29 17:37:16 -070053 void dump(int fd, const Vector<String16>& args) const;
Eino-Ville Talvalaea0d51b2012-08-28 01:25:43 -070054 private:
55 static const nsecs_t kWaitDuration = 10000000; // 10 ms
56 wp<Camera2Client> mClient;
Eino-Ville Talvalada6665c2012-08-29 17:37:16 -070057 wp<CaptureSequencer> mSequencer;
Eino-Ville Talvalaea0d51b2012-08-28 01:25:43 -070058
59 mutable Mutex mInputMutex;
60 bool mCaptureAvailable;
61 Condition mCaptureAvailableSignal;
62
63 enum {
64 NO_STREAM = -1
65 };
66
67 int mCaptureStreamId;
68 sp<CpuConsumer> mCaptureConsumer;
69 sp<ANativeWindow> mCaptureWindow;
Alex Raya6b4c402012-09-21 00:58:03 -070070 sp<MemoryHeapBase> mCaptureHeap;
Eino-Ville Talvalaea0d51b2012-08-28 01:25:43 -070071
72 virtual bool threadLoop();
73
74 status_t processNewCapture(sp<Camera2Client> &client);
Alex Ray0fa1e762012-09-27 16:06:48 -070075 size_t findJpegSize(uint8_t* jpegBuffer, size_t maxSize);
Eino-Ville Talvalaea0d51b2012-08-28 01:25:43 -070076
77};
78
79
80}; //namespace camera2
81}; //namespace android
82
83#endif