-
Notifications
You must be signed in to change notification settings - Fork 1
/
camera_preview.cpp
123 lines (108 loc) · 3.21 KB
/
camera_preview.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
* Copyright (C) 2012 Renesas Electronics Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file v4l_camera/camera_preview.cpp
* @author Guennadi Liakhovetski <g.liakhovetski@gmx.de>
* @brief C++ camera-preview and frame-manipulation interface
*/
#define LOG_TAG "camera_preview"
#include <sys/types.h>
#include <linux/videodev2.h>
#include <cutils/log.h>
#include <ui/Rect.h>
#include <ui/GraphicBufferMapper.h>
#include "camera_param.h"
#include "camera_preview.h"
#include <Converters.h>
#include <JpegCompressor.h>
namespace android {
uint8_t *camera_preview_lock(buffer_handle_t* buffer, unsigned int width, unsigned int height)
{
uint8_t* img = NULL;
/* Rectangle with origin at (0,0) */
const Rect rect(width, height);
GraphicBufferMapper& grbuffer_mapper(GraphicBufferMapper::get());
if (grbuffer_mapper.lock(*buffer, GRALLOC_USAGE_SW_WRITE_OFTEN, rect, (void **)&img) != NO_ERROR)
return NULL;
return img;
}
void camera_preview_unlock(buffer_handle_t* buffer)
{
GraphicBufferMapper& grbuffer_mapper(GraphicBufferMapper::get());
grbuffer_mapper.unlock(*buffer);
}
/* TODO: add trivial memcpy converters too */
camera_frame_converter camera_frame_converter_select(uint32_t fourcc, int fb_fmt)
{
switch (fourcc) {
case V4L2_PIX_FMT_YVU420:
switch (fb_fmt) {
case HAL_PIXEL_FORMAT_RGB_565:
return YV12ToRGB565;
case HAL_PIXEL_FORMAT_RGBA_8888:
return YV12ToRGB32;
// case HAL_PIXEL_FORMAT_RGB_888:
// case HAL_PIXEL_FORMAT_RGBA_5551:
}
break;
case V4L2_PIX_FMT_YUV420:
switch (fb_fmt) {
case HAL_PIXEL_FORMAT_RGBA_8888:
return YU12ToRGB32;
}
break;
case V4L2_PIX_FMT_NV21:
switch (fb_fmt) {
case HAL_PIXEL_FORMAT_RGB_565:
return NV21ToRGB565;
case HAL_PIXEL_FORMAT_RGBA_8888:
return NV21ToRGB32;
}
break;
case V4L2_PIX_FMT_NV12:
switch (fb_fmt) {
case HAL_PIXEL_FORMAT_RGB_565:
return NV12ToRGB565;
case HAL_PIXEL_FORMAT_RGBA_8888:
return NV12ToRGB32;
}
}
LOGE("%s(): %x -> %x conversion unsupported", __func__, fourcc, fb_fmt);
return NULL;
}
int camera_frame_compress(struct camera_callback *cb, uint8_t *in,
unsigned int width, unsigned int height)
{
NV21JpegCompressor compressor;
status_t ret = compressor.compressRawImage(in, width, height, 90);
if (ret == NO_ERROR) {
camera_memory_t* jpeg_buff =
cb->get_mem(-1, compressor.getCompressedSize(), 1, 0, NULL);
if (jpeg_buff && jpeg_buff->data) {
compressor.getCompressedImage(jpeg_buff->data);
cb->data(CAMERA_MSG_COMPRESSED_IMAGE, jpeg_buff, 0, NULL, cb->arg);
jpeg_buff->release(jpeg_buff);
} else {
LOGE("%s(): memory allocation failure", __func__);
return -ENOMEM;
}
} else {
LOGE("%s(): compression failure", __func__);
return -ENODATA;
}
return 0;
}
};