mirror of
https://github.com/followmsi/android_hardware_qcom_media.git
synced 2024-10-31 22:47:35 +00:00
Merge cherrypicks of [3276508, 3277765, 3277766, 3277904, 3276473, 3278009, 3278010, 3277767, 3277768, 3277769, 3277770, 3276509, 3276510, 3278011, 3278012, 3278013, 3278014, 3278099, 3278100, 3278101, 3278102, 3278103, 3278104, 3278105, 3278106, 3277800, 3276474, 3278015, 3278016, 3278017, 3278118, 3278119, 3278120, 3278121, 3278122, 3277946, 3277905, 3277947, 3277906, 3277751, 3278123, 3277752, 3278110, 3277771, 3277907, 3278095, 3277908, 3278111, 3277772, 3276475, 3276476] into oc-mr1-release
Change-Id: Ied703d922fe5821b2d7a1a70caf33b7776078e53
This commit is contained in:
commit
ba8875113b
3 changed files with 62 additions and 16 deletions
|
@ -690,6 +690,7 @@ class omx_video: public qc_omx_component
|
|||
omx_cmd_queue m_opq_meta_q;
|
||||
omx_cmd_queue m_opq_pmem_q;
|
||||
OMX_BUFFERHEADERTYPE meta_buffer_hdr[MAX_NUM_INPUT_BUFFERS];
|
||||
pthread_mutex_t m_buf_lock;
|
||||
|
||||
bool input_flush_progress;
|
||||
bool output_flush_progress;
|
||||
|
@ -701,6 +702,8 @@ class omx_video: public qc_omx_component
|
|||
bool allocate_native_handle;
|
||||
|
||||
uint64_t m_out_bm_count;
|
||||
uint64_t m_client_out_bm_count;
|
||||
uint64_t m_client_in_bm_count;
|
||||
uint64_t m_inp_bm_count;
|
||||
uint64_t m_flags;
|
||||
uint64_t m_etb_count;
|
||||
|
@ -713,6 +716,7 @@ class omx_video: public qc_omx_component
|
|||
bool hw_overload;
|
||||
size_t m_graphicbuffer_size;
|
||||
char m_platform[OMX_MAX_STRINGNAME_SIZE];
|
||||
bool m_buffer_freed;
|
||||
};
|
||||
|
||||
#endif // __OMX_VIDEO_BASE_H__
|
||||
|
|
|
@ -289,13 +289,16 @@ omx_video::omx_video():
|
|||
pending_output_buffers(0),
|
||||
allocate_native_handle(false),
|
||||
m_out_bm_count(0),
|
||||
m_client_out_bm_count(0),
|
||||
m_client_in_bm_count(0),
|
||||
m_inp_bm_count(0),
|
||||
m_flags(0),
|
||||
m_etb_count(0),
|
||||
m_fbd_count(0),
|
||||
m_event_port_settings_sent(false),
|
||||
hw_overload(false),
|
||||
m_graphicbuffer_size(0)
|
||||
m_graphicbuffer_size(0),
|
||||
m_buffer_freed(0)
|
||||
{
|
||||
DEBUG_PRINT_HIGH("omx_video(): Inside Constructor()");
|
||||
memset(&m_cmp,0,sizeof(m_cmp));
|
||||
|
@ -320,6 +323,8 @@ omx_video::omx_video():
|
|||
property_get("ro.board.platform", platform_name, "0");
|
||||
strlcpy(m_platform, platform_name, sizeof(m_platform));
|
||||
#endif
|
||||
|
||||
pthread_mutex_init(&m_buf_lock, NULL);
|
||||
}
|
||||
|
||||
|
||||
|
@ -361,6 +366,8 @@ omx_video::~omx_video()
|
|||
sem_destroy(&m_cmd_lock);
|
||||
DEBUG_PRINT_HIGH("m_etb_count = %" PRIu64 ", m_fbd_count = %" PRIu64, m_etb_count,
|
||||
m_fbd_count);
|
||||
|
||||
pthread_mutex_destroy(&m_buf_lock);
|
||||
DEBUG_PRINT_HIGH("omx_video: Destructor exit");
|
||||
DEBUG_PRINT_HIGH("Exiting OMX Video Encoder ...");
|
||||
}
|
||||
|
@ -433,6 +440,9 @@ void omx_video::process_event_cb(void *ctxt, unsigned char id)
|
|||
case OMX_CommandStateSet:
|
||||
pThis->m_state = (OMX_STATETYPE) p2;
|
||||
DEBUG_PRINT_LOW("Process -> state set to %d", pThis->m_state);
|
||||
if (pThis->m_state == OMX_StateLoaded) {
|
||||
m_buffer_freed = false;
|
||||
}
|
||||
pThis->m_pCallbacks.EventHandler(&pThis->m_cmp, pThis->m_app_data,
|
||||
OMX_EventCmdComplete, p1, p2, NULL);
|
||||
break;
|
||||
|
@ -2619,6 +2629,7 @@ OMX_ERRORTYPE omx_video::use_input_buffer(
|
|||
|
||||
*bufferHdr = (m_inp_mem_ptr + i);
|
||||
BITMASK_SET(&m_inp_bm_count,i);
|
||||
BITMASK_SET(&m_client_in_bm_count,i);
|
||||
|
||||
(*bufferHdr)->pBuffer = (OMX_U8 *)buffer;
|
||||
(*bufferHdr)->nSize = sizeof(OMX_BUFFERHEADERTYPE);
|
||||
|
@ -2897,6 +2908,7 @@ OMX_ERRORTYPE omx_video::use_output_buffer(
|
|||
}
|
||||
|
||||
BITMASK_SET(&m_out_bm_count,i);
|
||||
BITMASK_SET(&m_client_out_bm_count,i);
|
||||
} else {
|
||||
DEBUG_PRINT_ERROR("ERROR: All o/p Buffers have been Used, invalid use_buf call for "
|
||||
"index = %u", i);
|
||||
|
@ -2934,8 +2946,9 @@ OMX_ERRORTYPE omx_video::use_buffer(
|
|||
DEBUG_PRINT_ERROR("ERROR: Use Buffer in Invalid State");
|
||||
return OMX_ErrorInvalidState;
|
||||
}
|
||||
|
||||
auto_lock l(m_buf_lock);
|
||||
if (port == PORT_INDEX_IN) {
|
||||
auto_lock l(m_lock);
|
||||
eRet = use_input_buffer(hComp,bufferHdr,port,appData,bytes,buffer);
|
||||
} else if (port == PORT_INDEX_OUT) {
|
||||
eRet = use_output_buffer(hComp,bufferHdr,port,appData,bytes,buffer);
|
||||
|
@ -2943,7 +2956,6 @@ OMX_ERRORTYPE omx_video::use_buffer(
|
|||
DEBUG_PRINT_ERROR("ERROR: Invalid Port Index received %d",(int)port);
|
||||
eRet = OMX_ErrorBadPortIndex;
|
||||
}
|
||||
|
||||
if (eRet == OMX_ErrorNone) {
|
||||
if (allocate_done()) {
|
||||
if (BITMASK_PRESENT(&m_flags,OMX_COMPONENT_IDLE_PENDING)) {
|
||||
|
@ -3006,7 +3018,6 @@ OMX_ERRORTYPE omx_video::free_input_buffer(OMX_BUFFERHEADERTYPE *bufferHdr)
|
|||
}
|
||||
|
||||
if (index < m_sInPortDef.nBufferCountActual && m_pInput_pmem) {
|
||||
auto_lock l(m_lock);
|
||||
|
||||
if (mUseProxyColorFormat) {
|
||||
if (m_opq_pmem_q.m_size) {
|
||||
|
@ -3560,10 +3571,9 @@ OMX_ERRORTYPE omx_video::allocate_buffer(OMX_IN OMX_HANDLETYPE h
|
|||
DEBUG_PRINT_ERROR("ERROR: Allocate Buf in Invalid State");
|
||||
return OMX_ErrorInvalidState;
|
||||
}
|
||||
|
||||
auto_lock l(m_buf_lock);
|
||||
// What if the client calls again.
|
||||
if (port == PORT_INDEX_IN) {
|
||||
auto_lock l(m_lock);
|
||||
#ifdef _ANDROID_ICS_
|
||||
if (meta_mode_enable)
|
||||
eRet = allocate_input_meta_buffer(hComp,bufferHdr,appData,bytes);
|
||||
|
@ -3632,7 +3642,16 @@ OMX_ERRORTYPE omx_video::free_buffer(OMX_IN OMX_HANDLETYPE hComp,
|
|||
unsigned int nPortIndex;
|
||||
|
||||
DEBUG_PRINT_LOW("In for encoder free_buffer");
|
||||
|
||||
auto_lock l(m_buf_lock);
|
||||
if (port == PORT_INDEX_OUT) { //client called freebuffer, clearing client buffer bitmask right away to avoid use after free
|
||||
nPortIndex = buffer - (OMX_BUFFERHEADERTYPE*)m_out_mem_ptr;
|
||||
if(BITMASK_PRESENT(&m_client_out_bm_count, nPortIndex))
|
||||
BITMASK_CLEAR(&m_client_out_bm_count,nPortIndex);
|
||||
} else if (port == PORT_INDEX_IN) {
|
||||
nPortIndex = buffer - (meta_mode_enable?meta_buffer_hdr:m_inp_mem_ptr);
|
||||
if(BITMASK_PRESENT(&m_client_in_bm_count, nPortIndex))
|
||||
BITMASK_CLEAR(&m_client_in_bm_count,nPortIndex);
|
||||
}
|
||||
if (m_state == OMX_StateIdle &&
|
||||
(BITMASK_PRESENT(&m_flags ,OMX_COMPONENT_LOADING_PENDING))) {
|
||||
DEBUG_PRINT_LOW(" free buffer while Component in Loading pending");
|
||||
|
@ -3641,12 +3660,14 @@ OMX_ERRORTYPE omx_video::free_buffer(OMX_IN OMX_HANDLETYPE hComp,
|
|||
DEBUG_PRINT_LOW("Free Buffer while port %u disabled", (unsigned int)port);
|
||||
} else if (m_state == OMX_StateExecuting || m_state == OMX_StatePause) {
|
||||
DEBUG_PRINT_ERROR("ERROR: Invalid state to free buffer,ports need to be disabled");
|
||||
m_buffer_freed = true;
|
||||
post_event(OMX_EventError,
|
||||
OMX_ErrorPortUnpopulated,
|
||||
OMX_COMPONENT_GENERATE_EVENT);
|
||||
return eRet;
|
||||
} else {
|
||||
DEBUG_PRINT_ERROR("ERROR: Invalid state to free buffer,port lost Buffers");
|
||||
m_buffer_freed = true;
|
||||
post_event(OMX_EventError,
|
||||
OMX_ErrorPortUnpopulated,
|
||||
OMX_COMPONENT_GENERATE_EVENT);
|
||||
|
@ -3658,12 +3679,10 @@ OMX_ERRORTYPE omx_video::free_buffer(OMX_IN OMX_HANDLETYPE hComp,
|
|||
|
||||
DEBUG_PRINT_LOW("free_buffer on i/p port - Port idx %u, actual cnt %u",
|
||||
nPortIndex, (unsigned int)m_sInPortDef.nBufferCountActual);
|
||||
pthread_mutex_lock(&m_lock);
|
||||
if (nPortIndex < m_sInPortDef.nBufferCountActual &&
|
||||
BITMASK_PRESENT(&m_inp_bm_count, nPortIndex)) {
|
||||
// Clear the bit associated with it.
|
||||
BITMASK_CLEAR(&m_inp_bm_count,nPortIndex);
|
||||
pthread_mutex_unlock(&m_lock);
|
||||
free_input_buffer (buffer);
|
||||
m_sInPortDef.bPopulated = OMX_FALSE;
|
||||
|
||||
|
@ -3691,7 +3710,6 @@ OMX_ERRORTYPE omx_video::free_buffer(OMX_IN OMX_HANDLETYPE hComp,
|
|||
#endif
|
||||
}
|
||||
} else {
|
||||
pthread_mutex_unlock(&m_lock);
|
||||
DEBUG_PRINT_ERROR("ERROR: free_buffer ,Port Index Invalid");
|
||||
eRet = OMX_ErrorBadPortIndex;
|
||||
}
|
||||
|
@ -3771,6 +3789,9 @@ OMX_ERRORTYPE omx_video::free_buffer(OMX_IN OMX_HANDLETYPE hComp,
|
|||
m_out_bm_count, m_inp_bm_count);
|
||||
}
|
||||
}
|
||||
if (eRet != OMX_ErrorNone) {
|
||||
m_buffer_freed = true;
|
||||
}
|
||||
|
||||
return eRet;
|
||||
}
|
||||
|
@ -3991,9 +4012,9 @@ OMX_ERRORTYPE omx_video::empty_this_buffer_proxy(OMX_IN OMX_HANDLETYPE hComp,
|
|||
{
|
||||
DEBUG_PRINT_LOW("Heap UseBuffer case, so memcpy the data");
|
||||
|
||||
auto_lock l(m_lock);
|
||||
auto_lock l(m_buf_lock);
|
||||
pmem_data_buf = (OMX_U8 *)m_pInput_pmem[nBufIndex].buffer;
|
||||
if (pmem_data_buf && BITMASK_PRESENT(&m_inp_bm_count, nBufIndex)) {
|
||||
if (pmem_data_buf && BITMASK_PRESENT(&m_client_in_bm_count, nBufIndex)) {
|
||||
memcpy (pmem_data_buf, (buffer->pBuffer + buffer->nOffset),
|
||||
buffer->nFilledLen);
|
||||
}
|
||||
|
@ -4110,9 +4131,15 @@ OMX_ERRORTYPE omx_video::fill_this_buffer_proxy(
|
|||
(void)hComp;
|
||||
OMX_U8 *pmem_data_buf = NULL;
|
||||
OMX_ERRORTYPE nRet = OMX_ErrorNone;
|
||||
auto_lock l(m_buf_lock);
|
||||
if (m_buffer_freed == true) {
|
||||
DEBUG_PRINT_ERROR("ERROR: FTBProxy: Invalid call. Called after freebuffer");
|
||||
return OMX_ErrorBadParameter;
|
||||
}
|
||||
|
||||
if (bufferAdd != NULL) {
|
||||
DEBUG_PRINT_LOW("FTBProxy: bufferAdd->pBuffer[%p]", bufferAdd->pBuffer);
|
||||
|
||||
}
|
||||
if (bufferAdd == NULL || ((bufferAdd - m_out_mem_ptr) >= (int)m_sOutPortDef.nBufferCountActual) ) {
|
||||
DEBUG_PRINT_ERROR("ERROR: FTBProxy: Invalid i/p params");
|
||||
return OMX_ErrorBadParameter;
|
||||
|
|
|
@ -2361,11 +2361,15 @@ OMX_ERRORTYPE omx_venc::component_deinit(OMX_IN OMX_HANDLETYPE hComp)
|
|||
DEBUG_PRINT_ERROR("WARNING:Rxd DeInit,OMX not in LOADED state %d",\
|
||||
m_state);
|
||||
}
|
||||
|
||||
auto_lock l(m_buf_lock);
|
||||
if (m_out_mem_ptr) {
|
||||
DEBUG_PRINT_LOW("Freeing the Output Memory");
|
||||
for (i=0; i< m_sOutPortDef.nBufferCountActual; i++ ) {
|
||||
if (BITMASK_PRESENT(&m_out_bm_count, i)) {
|
||||
BITMASK_CLEAR(&m_out_bm_count, i);
|
||||
if (BITMASK_PRESENT(&m_client_out_bm_count, i))
|
||||
BITMASK_CLEAR(&m_client_out_bm_count, i);
|
||||
free_output_buffer (&m_out_mem_ptr[i]);
|
||||
}
|
||||
|
||||
|
@ -2387,6 +2391,8 @@ OMX_ERRORTYPE omx_venc::component_deinit(OMX_IN OMX_HANDLETYPE hComp)
|
|||
for (i=0; i<m_sInPortDef.nBufferCountActual; i++ ) {
|
||||
if (BITMASK_PRESENT(&m_inp_bm_count, i)) {
|
||||
BITMASK_CLEAR(&m_inp_bm_count, i);
|
||||
if (BITMASK_PRESENT(&m_client_in_bm_count, i))
|
||||
BITMASK_CLEAR(&m_client_in_bm_count, i);
|
||||
free_input_buffer (&m_inp_mem_ptr[i]);
|
||||
}
|
||||
|
||||
|
@ -2706,10 +2712,17 @@ int omx_venc::async_message_process (void *context, void* message)
|
|||
OMX_COMPONENT_GENERATE_EBD);
|
||||
break;
|
||||
case VEN_MSG_OUTPUT_BUFFER_DONE:
|
||||
{
|
||||
omxhdr = (OMX_BUFFERHEADERTYPE*)m_sVenc_msg->buf.clientdata;
|
||||
OMX_U32 bufIndex = (OMX_U32)(omxhdr - omx->m_out_mem_ptr);
|
||||
|
||||
if ( (omxhdr != NULL) &&
|
||||
((OMX_U32)(omxhdr - omx->m_out_mem_ptr) < omx->m_sOutPortDef.nBufferCountActual)) {
|
||||
(bufIndex < omx->m_sOutPortDef.nBufferCountActual)) {
|
||||
auto_lock l(omx->m_buf_lock);
|
||||
if (BITMASK_ABSENT(&(omx->m_out_bm_count), bufIndex)) {
|
||||
DEBUG_PRINT_ERROR("Recieved FBD for buffer that is already freed !");
|
||||
break;
|
||||
}
|
||||
if (!omx->is_secure_session() && (m_sVenc_msg->buf.len <= omxhdr->nAllocLen)) {
|
||||
omxhdr->nFilledLen = m_sVenc_msg->buf.len;
|
||||
omxhdr->nOffset = m_sVenc_msg->buf.offset;
|
||||
|
@ -2718,7 +2731,8 @@ int omx_venc::async_message_process (void *context, void* message)
|
|||
omxhdr->nFlags = m_sVenc_msg->buf.flags;
|
||||
|
||||
/*Use buffer case*/
|
||||
if (omx->output_use_buffer && !omx->m_use_output_pmem && !omx->is_secure_session()) {
|
||||
if (BITMASK_PRESENT(&(omx->m_client_out_bm_count), bufIndex) &&
|
||||
omx->output_use_buffer && !omx->m_use_output_pmem && !omx->is_secure_session()) {
|
||||
DEBUG_PRINT_LOW("memcpy() for o/p Heap UseBuffer");
|
||||
memcpy(omxhdr->pBuffer,
|
||||
(m_sVenc_msg->buf.ptrbuffer),
|
||||
|
@ -2752,6 +2766,7 @@ int omx_venc::async_message_process (void *context, void* message)
|
|||
omx->post_event ((unsigned long)omxhdr,m_sVenc_msg->statuscode,
|
||||
OMX_COMPONENT_GENERATE_FBD);
|
||||
break;
|
||||
}
|
||||
case VEN_MSG_NEED_OUTPUT_BUFFER:
|
||||
//TBD what action needs to be done here??
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue