Home | History | Annotate | Download | only in src

Lines Matching refs:m_out_mem_ptr

213                         m_out_mem_ptr(NULL),
2033 if(!m_out_mem_ptr)
2048 m_out_mem_ptr = (OMX_BUFFERHEADERTYPE *)calloc(nBufHdrSize,1);
2049 if(m_out_mem_ptr == NULL)
2051 DEBUG_PRINT_ERROR("\nERROR: calloc() Failed for m_out_mem_ptr");
2062 if(m_out_mem_ptr)
2064 bufHdr = m_out_mem_ptr;
2065 DEBUG_PRINT_LOW("Memory Allocation Succeeded for OUT port%p\n",m_out_mem_ptr);
2083 DEBUG_PRINT_ERROR("ERROR: Output buf mem alloc failed[0x%x]\n",m_out_mem_ptr);
2100 *bufferHdr = (m_out_mem_ptr + i );
2300 if(bufferHdr == NULL || m_out_mem_ptr == NULL)
2302 DEBUG_PRINT_ERROR("ERROR: free_output: Invalid bufferHdr[%p] or m_out_mem_ptr[%p]",
2303 bufferHdr, m_out_mem_ptr);
2306 index = bufferHdr - m_out_mem_ptr;
2486 if(!m_out_mem_ptr)
2499 m_out_mem_ptr = (OMX_BUFFERHEADERTYPE *)calloc(nBufHdrSize,1);
2503 if(m_out_mem_ptr && m_pOutput_pmem)
2505 bufHdr = m_out_mem_ptr;
2523 DEBUG_PRINT_ERROR("ERROR: calloc() failed for m_out_mem_ptr/m_pOutput_pmem");
2563 *bufferHdr = (m_out_mem_ptr + i );
2772 nPortIndex = buffer - (OMX_BUFFERHEADERTYPE*)m_out_mem_ptr;
2786 if(m_out_mem_ptr)
2788 DEBUG_PRINT_LOW("Freeing m_out_mem_ptr\n");
2789 free (m_out_mem_ptr);
2790 m_out_mem_ptr = NULL;
3055 if(bufferAdd == NULL || ((bufferAdd - m_out_mem_ptr) >= m_sOutPortDef.nBufferCountActual) )
3074 pmem_data_buf = (OMX_U8 *)m_pOutput_pmem[bufferAdd - m_out_mem_ptr].buffer;
3349 if(m_out_mem_ptr == NULL)
3354 if(m_out_mem_ptr )
3426 if(m_out_mem_ptr)
3491 if(buffer == NULL || ((buffer - m_out_mem_ptr) > m_sOutPortDef.nBufferCountActual))