commit 08259dd3dc9026887f9bbfedaf45866eb56ea9bc Author: Andreas Huber <andih@google.com> Date: Thu Nov 5 12:02:31 2009 -0800 DO NOT MERGE: Use PV for metadata extraction even if stagefright is used for playback. commit 991832fe4dc012e51d3d9ed8d647c7f09991858f Author: Andreas Huber <andih@google.com> Date: Thu Nov 5 11:24:11 2009 -0800 DO NOT MERGE: Do not assert if we encounter OMX_StateInvalid. All bets are off though. commit cec45cf302d9218fe79956cbe8a462d7ca3a10bb Author: Andreas Huber <andih@google.com> Date: Mon Oct 26 16:11:54 2009 -0700 DO NOT MERGE: When freeing an OMX node, attempt to transition it from its current state all the way to "Loaded" in order to properly free any allocated buffers. commit 34a1e885ef9113d68acbc26d36fcc47fdebbed84 Author: Andreas Huber <andih@google.com> Date: Thu Nov 5 11:10:49 2009 -0800 DO NOT MERGE: Fix heap corruptin in OMXNodeInstance. commit 5a47f7439a1298b330541a7e4e647a8b44487388 Author: Andreas Huber <andih@google.com> Date: Thu Nov 5 11:08:19 2009 -0800 DO NOT MERGE: Fix seek-on-initial-read behaviour of OMXCodec. commit 45bed64722501b9f411a2940aff5aff4cc4d2e98 Author: Andreas Huber <andih@google.com> Date: Thu Nov 5 11:02:23 2009 -0800 DO NOT MERGE: Renaming string.h to stagefright_string.h to avoid conflicts. commit 6738e306a50196f31a73d4fc7b7c45faff639903 Author: Andreas Huber <andih@google.com> Date: Thu Oct 15 13:46:54 2009 -0700 DO NOT MERGE: Reimplement the OMX backend for stagefright. Besides a major cleanup and refactoring, OMX is now a singleton living in the media server, it listens for death notifications of node observers/clients that allocated OMX nodes and performs/attempts cleanup. Changed APIs to conform to the rest of the system.
201 lines
5.5 KiB
C++
201 lines
5.5 KiB
C++
/*
|
|
* Copyright (C) 2009 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.
|
|
*/
|
|
|
|
#ifndef ANDROID_IOMX_H_
|
|
|
|
#define ANDROID_IOMX_H_
|
|
|
|
#include <binder/IInterface.h>
|
|
#include <utils/List.h>
|
|
#include <utils/String8.h>
|
|
|
|
#include <OMX_Core.h>
|
|
#include <OMX_Video.h>
|
|
|
|
#include "jni.h"
|
|
|
|
namespace android {
|
|
|
|
class IMemory;
|
|
class IOMXObserver;
|
|
class IOMXRenderer;
|
|
class ISurface;
|
|
class Surface;
|
|
|
|
class IOMX : public IInterface {
|
|
public:
|
|
DECLARE_META_INTERFACE(OMX);
|
|
|
|
typedef void *buffer_id;
|
|
typedef void *node_id;
|
|
|
|
virtual status_t listNodes(List<String8> *list) = 0;
|
|
|
|
virtual status_t allocateNode(
|
|
const char *name, const sp<IOMXObserver> &observer,
|
|
node_id *node) = 0;
|
|
|
|
virtual status_t freeNode(node_id node) = 0;
|
|
|
|
virtual status_t sendCommand(
|
|
node_id node, OMX_COMMANDTYPE cmd, OMX_S32 param) = 0;
|
|
|
|
virtual status_t getParameter(
|
|
node_id node, OMX_INDEXTYPE index,
|
|
void *params, size_t size) = 0;
|
|
|
|
virtual status_t setParameter(
|
|
node_id node, OMX_INDEXTYPE index,
|
|
const void *params, size_t size) = 0;
|
|
|
|
virtual status_t getConfig(
|
|
node_id node, OMX_INDEXTYPE index,
|
|
void *params, size_t size) = 0;
|
|
|
|
virtual status_t setConfig(
|
|
node_id node, OMX_INDEXTYPE index,
|
|
const void *params, size_t size) = 0;
|
|
|
|
virtual status_t useBuffer(
|
|
node_id node, OMX_U32 port_index, const sp<IMemory> ¶ms,
|
|
buffer_id *buffer) = 0;
|
|
|
|
virtual status_t allocateBuffer(
|
|
node_id node, OMX_U32 port_index, size_t size,
|
|
buffer_id *buffer) = 0;
|
|
|
|
virtual status_t allocateBufferWithBackup(
|
|
node_id node, OMX_U32 port_index, const sp<IMemory> ¶ms,
|
|
buffer_id *buffer) = 0;
|
|
|
|
virtual status_t freeBuffer(
|
|
node_id node, OMX_U32 port_index, buffer_id buffer) = 0;
|
|
|
|
virtual status_t fillBuffer(node_id node, buffer_id buffer) = 0;
|
|
|
|
virtual status_t emptyBuffer(
|
|
node_id node,
|
|
buffer_id buffer,
|
|
OMX_U32 range_offset, OMX_U32 range_length,
|
|
OMX_U32 flags, OMX_TICKS timestamp) = 0;
|
|
|
|
virtual status_t getExtensionIndex(
|
|
node_id node,
|
|
const char *parameter_name,
|
|
OMX_INDEXTYPE *index) = 0;
|
|
|
|
virtual sp<IOMXRenderer> createRenderer(
|
|
const sp<ISurface> &surface,
|
|
const char *componentName,
|
|
OMX_COLOR_FORMATTYPE colorFormat,
|
|
size_t encodedWidth, size_t encodedHeight,
|
|
size_t displayWidth, size_t displayHeight) = 0;
|
|
|
|
// Note: These methods are _not_ virtual, it exists as a wrapper around
|
|
// the virtual "createRenderer" method above facilitating extraction
|
|
// of the ISurface from a regular Surface or a java Surface object.
|
|
sp<IOMXRenderer> createRenderer(
|
|
const sp<Surface> &surface,
|
|
const char *componentName,
|
|
OMX_COLOR_FORMATTYPE colorFormat,
|
|
size_t encodedWidth, size_t encodedHeight,
|
|
size_t displayWidth, size_t displayHeight);
|
|
|
|
sp<IOMXRenderer> createRendererFromJavaSurface(
|
|
JNIEnv *env, jobject javaSurface,
|
|
const char *componentName,
|
|
OMX_COLOR_FORMATTYPE colorFormat,
|
|
size_t encodedWidth, size_t encodedHeight,
|
|
size_t displayWidth, size_t displayHeight);
|
|
};
|
|
|
|
struct omx_message {
|
|
enum {
|
|
EVENT,
|
|
EMPTY_BUFFER_DONE,
|
|
FILL_BUFFER_DONE,
|
|
|
|
} type;
|
|
|
|
IOMX::node_id node;
|
|
|
|
union {
|
|
// if type == EVENT
|
|
struct {
|
|
OMX_EVENTTYPE event;
|
|
OMX_U32 data1;
|
|
OMX_U32 data2;
|
|
} event_data;
|
|
|
|
// if type == EMPTY_BUFFER_DONE
|
|
struct {
|
|
IOMX::buffer_id buffer;
|
|
} buffer_data;
|
|
|
|
// if type == FILL_BUFFER_DONE
|
|
struct {
|
|
IOMX::buffer_id buffer;
|
|
OMX_U32 range_offset;
|
|
OMX_U32 range_length;
|
|
OMX_U32 flags;
|
|
OMX_TICKS timestamp;
|
|
OMX_PTR platform_private;
|
|
} extended_buffer_data;
|
|
|
|
} u;
|
|
};
|
|
|
|
class IOMXObserver : public IInterface {
|
|
public:
|
|
DECLARE_META_INTERFACE(OMXObserver);
|
|
|
|
virtual void onMessage(const omx_message &msg) = 0;
|
|
};
|
|
|
|
class IOMXRenderer : public IInterface {
|
|
public:
|
|
DECLARE_META_INTERFACE(OMXRenderer);
|
|
|
|
virtual void render(IOMX::buffer_id buffer) = 0;
|
|
};
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
class BnOMX : public BnInterface<IOMX> {
|
|
public:
|
|
virtual status_t onTransact(
|
|
uint32_t code, const Parcel &data, Parcel *reply,
|
|
uint32_t flags = 0);
|
|
};
|
|
|
|
class BnOMXObserver : public BnInterface<IOMXObserver> {
|
|
public:
|
|
virtual status_t onTransact(
|
|
uint32_t code, const Parcel &data, Parcel *reply,
|
|
uint32_t flags = 0);
|
|
};
|
|
|
|
class BnOMXRenderer : public BnInterface<IOMXRenderer> {
|
|
public:
|
|
virtual status_t onTransact(
|
|
uint32_t code, const Parcel &data, Parcel *reply,
|
|
uint32_t flags = 0);
|
|
};
|
|
|
|
} // namespace android
|
|
|
|
#endif // ANDROID_IOMX_H_
|