forked from sailfishos/droidmedia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
droidmediaconvert.cpp
135 lines (112 loc) · 3.46 KB
/
droidmediaconvert.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
124
125
126
127
128
129
130
131
132
133
134
135
/*
* Copyright (C) 2014-2015 Jolla Ltd.
*
* 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.
*
* Authored by: Mohammed Hassan <mohammed.hassan@jolla.com>
*/
#include "droidmediaconvert.h"
#include "droidmediabuffer.h"
#include <media/editor/II420ColorConverter.h>
#include <media/openmax/OMX_IVCommon.h>
#include <cutils/log.h>
#include <dlfcn.h>
typedef void (*_getI420ColorConverter)(II420ColorConverter *converter);
#undef LOG_TAG
#define LOG_TAG "DroidMediaConvert"
extern "C" {
struct _DroidMediaConvert : public II420ColorConverter
{
public:
_DroidMediaConvert() :
m_handle(NULL) {
m_crop.top = m_crop.left = m_crop.bottom = m_crop.right = -1;
m_width = m_height = 0;
}
~_DroidMediaConvert() {
if (m_handle) {
dlclose(m_handle);
m_handle = NULL;
}
}
bool init() {
if (m_handle) {
ALOGW("already loaded");
return true;
}
m_handle = dlopen("libI420colorconvert.so", RTLD_NOW);
if (!m_handle) {
ALOGE("failed to load libI420colorconvert.so. %s", dlerror());
return false;
}
_getI420ColorConverter func = (_getI420ColorConverter)dlsym(m_handle, "getI420ColorConverter");
if (!func) {
ALOGE("failed to find symbol getI420ColorConverter");
dlclose(m_handle);
m_handle = NULL;
return false;
}
func(this);
return true;
}
void *m_handle;
ARect m_crop;
int32_t m_width;
int32_t m_height;
};
DroidMediaConvert *droid_media_convert_create()
{
DroidMediaConvert *conv = new DroidMediaConvert;
if (conv->init()) {
return conv;
}
delete conv;
return NULL;
}
void droid_media_convert_destroy(DroidMediaConvert *convert)
{
delete convert;
}
bool droid_media_convert_to_i420(DroidMediaConvert *convert, DroidMediaData *in, void *out)
{
if (convert->m_crop.left == -1 ||
convert->m_crop.top == -1 ||
convert->m_crop.right == -1 ||
convert->m_crop.bottom == -1) {
ALOGE("crop rectangle not set");
return false;
}
android::status_t err = convert->convertDecoderOutputToI420(in->data, convert->m_width,
convert->m_height,
convert->m_crop,
out);
if (err != android::NO_ERROR) {
ALOGE("error 0x%x converting buffer", -err);
return false;
}
return true;
}
void droid_media_convert_set_crop_rect(DroidMediaConvert *convert, DroidMediaRect rect,
int32_t width, int32_t height)
{
convert->m_crop.left = rect.left;
convert->m_crop.top = rect.top;
convert->m_crop.right = rect.right - 1;
convert->m_crop.bottom = rect.bottom - 1;
convert->m_width = width;
convert->m_height = height;
}
bool droid_media_convert_is_i420(DroidMediaConvert *convert) {
return convert->getDecoderOutputFormat() == OMX_COLOR_FormatYUV420Planar;
}
};