mirror of
https://github.com/followmsi/android_hardware_qcom_media.git
synced 2024-10-31 22:47:35 +00:00
Revert "mm-video-v4l2: venc: Protect buffer from being freed while accessing"
This reverts commit 2c15b5832a
.
Bug: 67670457
Bug: 36130225
Test: capture a video
This commit is contained in:
parent
16df6cadae
commit
b12448b860
3 changed files with 1 additions and 16 deletions
|
@ -690,7 +690,6 @@ 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;
|
||||
|
|
|
@ -320,8 +320,6 @@ 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);
|
||||
}
|
||||
|
||||
|
||||
|
@ -363,8 +361,6 @@ 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 ...");
|
||||
}
|
||||
|
@ -2751,7 +2747,6 @@ OMX_ERRORTYPE omx_video::use_output_buffer(
|
|||
return OMX_ErrorBadParameter;
|
||||
}
|
||||
|
||||
auto_lock l(m_buf_lock);
|
||||
if (!m_out_mem_ptr) {
|
||||
output_use_buffer = true;
|
||||
int nBufHdrSize = 0;
|
||||
|
@ -3717,7 +3712,6 @@ OMX_ERRORTYPE omx_video::free_buffer(OMX_IN OMX_HANDLETYPE hComp,
|
|||
nPortIndex, (unsigned int)m_sOutPortDef.nBufferCountActual);
|
||||
if (nPortIndex < m_sOutPortDef.nBufferCountActual &&
|
||||
BITMASK_PRESENT(&m_out_bm_count, nPortIndex)) {
|
||||
auto_lock l(m_buf_lock);
|
||||
// Clear the bit associated with it.
|
||||
BITMASK_CLEAR(&m_out_bm_count,nPortIndex);
|
||||
m_sOutPortDef.bPopulated = OMX_FALSE;
|
||||
|
|
|
@ -2706,17 +2706,10 @@ 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) &&
|
||||
(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;
|
||||
}
|
||||
((OMX_U32)(omxhdr - omx->m_out_mem_ptr) < omx->m_sOutPortDef.nBufferCountActual)) {
|
||||
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;
|
||||
|
@ -2759,7 +2752,6 @@ 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