blob: f119335f9c9cc3314a6fe78f0d1a2c283b7a1b6f [file] [log] [blame]
/*
* Copyright (c) 2009-2012 Intel Corporation. All rights reserved.
*
* 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 OMX_VIDEO_DECODER_AVC_SECURE_H_
#define OMX_VIDEO_DECODER_AVC_SECURE_H_
#include "OMXVideoDecoderBase.h"
extern "C" {
#include "drm_vendor_api.h"
}
class OMXVideoDecoderAVCSecure : public OMXVideoDecoderBase {
public:
OMXVideoDecoderAVCSecure();
virtual ~OMXVideoDecoderAVCSecure();
protected:
virtual OMX_ERRORTYPE InitInputPortFormatSpecific(OMX_PARAM_PORTDEFINITIONTYPE *paramPortDefinitionInput);
virtual OMX_ERRORTYPE ProcessorInit(void);
virtual OMX_ERRORTYPE ProcessorDeinit(void);
virtual OMX_ERRORTYPE ProcessorStart(void);
virtual OMX_ERRORTYPE ProcessorStop(void);
virtual OMX_ERRORTYPE ProcessorPause(void);
virtual OMX_ERRORTYPE ProcessorResume(void);
virtual OMX_ERRORTYPE ProcessorFlush(OMX_U32 portIndex);
virtual OMX_ERRORTYPE ProcessorProcess(
OMX_BUFFERHEADERTYPE ***pBuffers,
buffer_retain_t *retains,
OMX_U32 numberBuffers);
virtual OMX_ERRORTYPE PrepareConfigBuffer(VideoConfigBuffer *p);
virtual OMX_ERRORTYPE PrepareDecodeBuffer(OMX_BUFFERHEADERTYPE *buffer, buffer_retain_t *retain, VideoDecodeBuffer *p);
virtual OMX_ERRORTYPE BuildHandlerList(void);
virtual OMX_ERRORTYPE SetMaxOutputBufferCount(OMX_PARAM_PORTDEFINITIONTYPE *p);
DECLARE_HANDLER(OMXVideoDecoderAVCSecure, ExtAllocateNativeHandle);
DECLARE_HANDLER(OMXVideoDecoderAVCSecure, ParamVideoAvc);
DECLARE_HANDLER(OMXVideoDecoderAVCSecure, ParamVideoAVCProfileLevel);
private:
static OMX_U8* MemAllocDataBuffer(OMX_U32 nSizeBytes, OMX_PTR pUserData);
static void MemFreeDataBuffer(OMX_U8 *pBuffer, OMX_PTR pUserData);
OMX_U8* MemAllocDataBuffer(OMX_U32 nSizeBytes);
void MemFreeDataBuffer(OMX_U8 *pBuffer);
static void KeepAliveTimerCallback(sigval v);
void KeepAliveTimerCallback();
void WaitForFrameDisplayed();
bool EnableIEDSession(bool enable);
OMX_ERRORTYPE PrepareWVCDecodeBuffer(OMX_BUFFERHEADERTYPE *buffer, buffer_retain_t *retain, VideoDecodeBuffer *p);
OMX_ERRORTYPE PrepareCENCDecodeBuffer(OMX_BUFFERHEADERTYPE *buffer, buffer_retain_t *retain, VideoDecodeBuffer *p);
OMX_ERRORTYPE PreparePRASFDecodeBuffer(OMX_BUFFERHEADERTYPE *buffer, buffer_retain_t *retain, VideoDecodeBuffer *p);
private:
enum {
// OMX_PARAM_PORTDEFINITIONTYPE
INPORT_MIN_BUFFER_COUNT = 1,
INPORT_ACTUAL_BUFFER_COUNT = 5,
INPORT_BUFFER_SIZE = 1572864,
// for OMX_VIDEO_PARAM_INTEL_AVC_DECODE_SETTINGS
// default number of reference frame
NUM_REFERENCE_FRAME = 4,
// a typical value for 1080p clips
OUTPORT_NATIVE_BUFFER_COUNT = 17,
};
OMX_VIDEO_PARAM_AVCTYPE mParamAvc;
uint32_t mDrmScheme;
struct IMRSlot {
uint32_t offset;
uint8_t *owner; // pointer to OMX buffer that owns this slot
} mDataBufferSlot[INPORT_ACTUAL_BUFFER_COUNT];
timer_t mKeepAliveTimer;
// Keep track of number of allocated inport buffers
uint32_t mNumInportBuffers;
bool mSessionPaused;
struct drm_vendor_api drm_vendor_api;
int mDrmDevFd;
};
#endif /* OMX_VIDEO_DECODER_AVC_SECURE_H_ */