mirror of
https://github.com/followmsi/android_hardware_qcom_media.git
synced 2024-10-31 22:47:35 +00:00
mm-video-v4l2: venc: Avoid buffer access after free am: b701fb182b
am: 6533d3dd97
am: 2d39f9e2b0
am: 9086e5116a
am: 2684efbc38
am: 03fdd22ce8
am: 1991311b39
Change-Id: I83b875e37162a3e66dd0fbb1851661b49e304299
This commit is contained in:
commit
b140d7429a
1 changed files with 0 additions and 2 deletions
|
@ -2671,7 +2671,6 @@ OMX_ERRORTYPE omx_video::use_output_buffer(
|
||||||
return OMX_ErrorBadParameter;
|
return OMX_ErrorBadParameter;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto_lock l(m_buf_lock);
|
|
||||||
if (!m_out_mem_ptr) {
|
if (!m_out_mem_ptr) {
|
||||||
output_use_buffer = true;
|
output_use_buffer = true;
|
||||||
int nBufHdrSize = 0;
|
int nBufHdrSize = 0;
|
||||||
|
@ -3616,7 +3615,6 @@ OMX_ERRORTYPE omx_video::free_buffer(OMX_IN OMX_HANDLETYPE hComp,
|
||||||
nPortIndex, (unsigned int)m_sOutPortDef.nBufferCountActual);
|
nPortIndex, (unsigned int)m_sOutPortDef.nBufferCountActual);
|
||||||
if (nPortIndex < m_sOutPortDef.nBufferCountActual &&
|
if (nPortIndex < m_sOutPortDef.nBufferCountActual &&
|
||||||
BITMASK_PRESENT(&m_out_bm_count, nPortIndex)) {
|
BITMASK_PRESENT(&m_out_bm_count, nPortIndex)) {
|
||||||
auto_lock l(m_buf_lock);
|
|
||||||
// Clear the bit associated with it.
|
// Clear the bit associated with it.
|
||||||
BITMASK_CLEAR(&m_out_bm_count,nPortIndex);
|
BITMASK_CLEAR(&m_out_bm_count,nPortIndex);
|
||||||
m_sOutPortDef.bPopulated = OMX_FALSE;
|
m_sOutPortDef.bPopulated = OMX_FALSE;
|
||||||
|
|
Loading…
Reference in a new issue