405 lines
12 KiB
C++
405 lines
12 KiB
C++
/*
|
|
* Copyright 2011, The Android Open Source Project
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
// #define LOG_NDEBUG 0
|
|
#define LOG_TAG "AndroidMediaUtils"
|
|
|
|
#include <utils/Log.h>
|
|
#include "android_media_Utils.h"
|
|
|
|
#include <media/stagefright/foundation/ADebug.h>
|
|
#include <media/stagefright/foundation/ABuffer.h>
|
|
#include <media/stagefright/foundation/AMessage.h>
|
|
|
|
namespace android {
|
|
|
|
bool ConvertKeyValueArraysToKeyedVector(
|
|
JNIEnv *env, jobjectArray keys, jobjectArray values,
|
|
KeyedVector<String8, String8>* keyedVector) {
|
|
|
|
int nKeyValuePairs = 0;
|
|
bool failed = false;
|
|
if (keys != NULL && values != NULL) {
|
|
nKeyValuePairs = env->GetArrayLength(keys);
|
|
failed = (nKeyValuePairs != env->GetArrayLength(values));
|
|
}
|
|
|
|
if (!failed) {
|
|
failed = ((keys != NULL && values == NULL) ||
|
|
(keys == NULL && values != NULL));
|
|
}
|
|
|
|
if (failed) {
|
|
ALOGE("keys and values arrays have different length");
|
|
jniThrowException(env, "java/lang/IllegalArgumentException", NULL);
|
|
return false;
|
|
}
|
|
|
|
for (int i = 0; i < nKeyValuePairs; ++i) {
|
|
// No need to check on the ArrayIndexOutOfBoundsException, since
|
|
// it won't happen here.
|
|
jstring key = (jstring) env->GetObjectArrayElement(keys, i);
|
|
jstring value = (jstring) env->GetObjectArrayElement(values, i);
|
|
|
|
const char* keyStr = env->GetStringUTFChars(key, NULL);
|
|
if (!keyStr) { // OutOfMemoryError
|
|
return false;
|
|
}
|
|
|
|
const char* valueStr = env->GetStringUTFChars(value, NULL);
|
|
if (!valueStr) { // OutOfMemoryError
|
|
env->ReleaseStringUTFChars(key, keyStr);
|
|
return false;
|
|
}
|
|
|
|
keyedVector->add(String8(keyStr), String8(valueStr));
|
|
|
|
env->ReleaseStringUTFChars(key, keyStr);
|
|
env->ReleaseStringUTFChars(value, valueStr);
|
|
env->DeleteLocalRef(key);
|
|
env->DeleteLocalRef(value);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
static jobject makeIntegerObject(JNIEnv *env, int32_t value) {
|
|
jclass clazz = env->FindClass("java/lang/Integer");
|
|
CHECK(clazz != NULL);
|
|
|
|
jmethodID integerConstructID = env->GetMethodID(clazz, "<init>", "(I)V");
|
|
CHECK(integerConstructID != NULL);
|
|
|
|
return env->NewObject(clazz, integerConstructID, value);
|
|
}
|
|
|
|
static jobject makeLongObject(JNIEnv *env, int64_t value) {
|
|
jclass clazz = env->FindClass("java/lang/Long");
|
|
CHECK(clazz != NULL);
|
|
|
|
jmethodID longConstructID = env->GetMethodID(clazz, "<init>", "(J)V");
|
|
CHECK(longConstructID != NULL);
|
|
|
|
return env->NewObject(clazz, longConstructID, value);
|
|
}
|
|
|
|
static jobject makeFloatObject(JNIEnv *env, float value) {
|
|
jclass clazz = env->FindClass("java/lang/Float");
|
|
CHECK(clazz != NULL);
|
|
|
|
jmethodID floatConstructID = env->GetMethodID(clazz, "<init>", "(F)V");
|
|
CHECK(floatConstructID != NULL);
|
|
|
|
return env->NewObject(clazz, floatConstructID, value);
|
|
}
|
|
|
|
static jobject makeByteBufferObject(
|
|
JNIEnv *env, const void *data, size_t size) {
|
|
jbyteArray byteArrayObj = env->NewByteArray(size);
|
|
env->SetByteArrayRegion(byteArrayObj, 0, size, (const jbyte *)data);
|
|
|
|
jclass clazz = env->FindClass("java/nio/ByteBuffer");
|
|
CHECK(clazz != NULL);
|
|
|
|
jmethodID byteBufWrapID =
|
|
env->GetStaticMethodID(clazz, "wrap", "([B)Ljava/nio/ByteBuffer;");
|
|
CHECK(byteBufWrapID != NULL);
|
|
|
|
jobject byteBufObj = env->CallStaticObjectMethod(
|
|
clazz, byteBufWrapID, byteArrayObj);
|
|
|
|
env->DeleteLocalRef(byteArrayObj); byteArrayObj = NULL;
|
|
|
|
return byteBufObj;
|
|
}
|
|
|
|
static void SetMapInt32(
|
|
JNIEnv *env, jobject hashMapObj, jmethodID hashMapPutID,
|
|
const char *key, int32_t value) {
|
|
jstring keyObj = env->NewStringUTF(key);
|
|
jobject valueObj = makeIntegerObject(env, value);
|
|
|
|
jobject res = env->CallObjectMethod(
|
|
hashMapObj, hashMapPutID, keyObj, valueObj);
|
|
|
|
env->DeleteLocalRef(valueObj); valueObj = NULL;
|
|
env->DeleteLocalRef(keyObj); keyObj = NULL;
|
|
}
|
|
|
|
status_t ConvertMessageToMap(
|
|
JNIEnv *env, const sp<AMessage> &msg, jobject *map) {
|
|
jclass hashMapClazz = env->FindClass("java/util/HashMap");
|
|
|
|
if (hashMapClazz == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
jmethodID hashMapConstructID =
|
|
env->GetMethodID(hashMapClazz, "<init>", "()V");
|
|
|
|
if (hashMapConstructID == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
jmethodID hashMapPutID =
|
|
env->GetMethodID(
|
|
hashMapClazz,
|
|
"put",
|
|
"(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;");
|
|
|
|
if (hashMapPutID == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
jobject hashMap = env->NewObject(hashMapClazz, hashMapConstructID);
|
|
|
|
for (size_t i = 0; i < msg->countEntries(); ++i) {
|
|
AMessage::Type valueType;
|
|
const char *key = msg->getEntryNameAt(i, &valueType);
|
|
|
|
jobject valueObj = NULL;
|
|
|
|
switch (valueType) {
|
|
case AMessage::kTypeInt32:
|
|
{
|
|
int32_t val;
|
|
CHECK(msg->findInt32(key, &val));
|
|
|
|
valueObj = makeIntegerObject(env, val);
|
|
break;
|
|
}
|
|
|
|
case AMessage::kTypeInt64:
|
|
{
|
|
int64_t val;
|
|
CHECK(msg->findInt64(key, &val));
|
|
|
|
valueObj = makeLongObject(env, val);
|
|
break;
|
|
}
|
|
|
|
case AMessage::kTypeFloat:
|
|
{
|
|
float val;
|
|
CHECK(msg->findFloat(key, &val));
|
|
|
|
valueObj = makeFloatObject(env, val);
|
|
break;
|
|
}
|
|
|
|
case AMessage::kTypeString:
|
|
{
|
|
AString val;
|
|
CHECK(msg->findString(key, &val));
|
|
|
|
valueObj = env->NewStringUTF(val.c_str());
|
|
break;
|
|
}
|
|
|
|
case AMessage::kTypeBuffer:
|
|
{
|
|
sp<ABuffer> buffer;
|
|
CHECK(msg->findBuffer(key, &buffer));
|
|
|
|
valueObj = makeByteBufferObject(
|
|
env, buffer->data(), buffer->size());
|
|
break;
|
|
}
|
|
|
|
case AMessage::kTypeRect:
|
|
{
|
|
int32_t left, top, right, bottom;
|
|
CHECK(msg->findRect(key, &left, &top, &right, &bottom));
|
|
|
|
SetMapInt32(
|
|
env,
|
|
hashMap,
|
|
hashMapPutID,
|
|
StringPrintf("%s-left", key).c_str(),
|
|
left);
|
|
|
|
SetMapInt32(
|
|
env,
|
|
hashMap,
|
|
hashMapPutID,
|
|
StringPrintf("%s-top", key).c_str(),
|
|
top);
|
|
|
|
SetMapInt32(
|
|
env,
|
|
hashMap,
|
|
hashMapPutID,
|
|
StringPrintf("%s-right", key).c_str(),
|
|
right);
|
|
|
|
SetMapInt32(
|
|
env,
|
|
hashMap,
|
|
hashMapPutID,
|
|
StringPrintf("%s-bottom", key).c_str(),
|
|
bottom);
|
|
break;
|
|
}
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
if (valueObj != NULL) {
|
|
jstring keyObj = env->NewStringUTF(key);
|
|
|
|
jobject res = env->CallObjectMethod(
|
|
hashMap, hashMapPutID, keyObj, valueObj);
|
|
|
|
env->DeleteLocalRef(keyObj); keyObj = NULL;
|
|
env->DeleteLocalRef(valueObj); valueObj = NULL;
|
|
}
|
|
}
|
|
|
|
*map = hashMap;
|
|
|
|
return OK;
|
|
}
|
|
|
|
status_t ConvertKeyValueArraysToMessage(
|
|
JNIEnv *env, jobjectArray keys, jobjectArray values,
|
|
sp<AMessage> *out) {
|
|
jclass stringClass = env->FindClass("java/lang/String");
|
|
CHECK(stringClass != NULL);
|
|
|
|
jclass integerClass = env->FindClass("java/lang/Integer");
|
|
CHECK(integerClass != NULL);
|
|
|
|
jclass floatClass = env->FindClass("java/lang/Float");
|
|
CHECK(floatClass != NULL);
|
|
|
|
jclass byteBufClass = env->FindClass("java/nio/ByteBuffer");
|
|
CHECK(byteBufClass != NULL);
|
|
|
|
sp<AMessage> msg = new AMessage;
|
|
|
|
jsize numEntries = 0;
|
|
|
|
if (keys != NULL) {
|
|
if (values == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
numEntries = env->GetArrayLength(keys);
|
|
|
|
if (numEntries != env->GetArrayLength(values)) {
|
|
return -EINVAL;
|
|
}
|
|
} else if (values != NULL) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
for (jsize i = 0; i < numEntries; ++i) {
|
|
jobject keyObj = env->GetObjectArrayElement(keys, i);
|
|
|
|
if (!env->IsInstanceOf(keyObj, stringClass)) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
const char *tmp = env->GetStringUTFChars((jstring)keyObj, NULL);
|
|
|
|
if (tmp == NULL) {
|
|
return -ENOMEM;
|
|
}
|
|
|
|
AString key = tmp;
|
|
|
|
env->ReleaseStringUTFChars((jstring)keyObj, tmp);
|
|
tmp = NULL;
|
|
|
|
jobject valueObj = env->GetObjectArrayElement(values, i);
|
|
|
|
if (env->IsInstanceOf(valueObj, stringClass)) {
|
|
const char *value = env->GetStringUTFChars((jstring)valueObj, NULL);
|
|
|
|
if (value == NULL) {
|
|
return -ENOMEM;
|
|
}
|
|
|
|
msg->setString(key.c_str(), value);
|
|
|
|
env->ReleaseStringUTFChars((jstring)valueObj, value);
|
|
value = NULL;
|
|
} else if (env->IsInstanceOf(valueObj, integerClass)) {
|
|
jmethodID intValueID =
|
|
env->GetMethodID(integerClass, "intValue", "()I");
|
|
CHECK(intValueID != NULL);
|
|
|
|
jint value = env->CallIntMethod(valueObj, intValueID);
|
|
|
|
msg->setInt32(key.c_str(), value);
|
|
} else if (env->IsInstanceOf(valueObj, floatClass)) {
|
|
jmethodID floatValueID =
|
|
env->GetMethodID(floatClass, "floatValue", "()F");
|
|
CHECK(floatValueID != NULL);
|
|
|
|
jfloat value = env->CallFloatMethod(valueObj, floatValueID);
|
|
|
|
msg->setFloat(key.c_str(), value);
|
|
} else if (env->IsInstanceOf(valueObj, byteBufClass)) {
|
|
jmethodID positionID =
|
|
env->GetMethodID(byteBufClass, "position", "()I");
|
|
CHECK(positionID != NULL);
|
|
|
|
jmethodID limitID =
|
|
env->GetMethodID(byteBufClass, "limit", "()I");
|
|
CHECK(limitID != NULL);
|
|
|
|
jint position = env->CallIntMethod(valueObj, positionID);
|
|
jint limit = env->CallIntMethod(valueObj, limitID);
|
|
|
|
sp<ABuffer> buffer = new ABuffer(limit - position);
|
|
|
|
void *data = env->GetDirectBufferAddress(valueObj);
|
|
|
|
if (data != NULL) {
|
|
memcpy(buffer->data(),
|
|
(const uint8_t *)data + position,
|
|
buffer->size());
|
|
} else {
|
|
jmethodID arrayID =
|
|
env->GetMethodID(byteBufClass, "array", "()[B");
|
|
CHECK(arrayID != NULL);
|
|
|
|
jbyteArray byteArray =
|
|
(jbyteArray)env->CallObjectMethod(valueObj, arrayID);
|
|
CHECK(byteArray != NULL);
|
|
|
|
env->GetByteArrayRegion(
|
|
byteArray,
|
|
position,
|
|
buffer->size(),
|
|
(jbyte *)buffer->data());
|
|
|
|
env->DeleteLocalRef(byteArray); byteArray = NULL;
|
|
}
|
|
|
|
msg->setBuffer(key.c_str(), buffer);
|
|
}
|
|
}
|
|
|
|
*out = msg;
|
|
|
|
return OK;
|
|
}
|
|
|
|
} // namespace android
|
|
|