Home | History | Annotate | Download | only in src

Lines Matching refs:m_out_mem_ptr

231                         m_out_mem_ptr(NULL),
2246 if(!m_out_mem_ptr)
2261 m_out_mem_ptr = (OMX_BUFFERHEADERTYPE *)calloc(nBufHdrSize,1);
2262 if(m_out_mem_ptr == NULL)
2264 DEBUG_PRINT_ERROR("\nERROR: calloc() Failed for m_out_mem_ptr");
2282 if(m_out_mem_ptr)
2284 bufHdr = m_out_mem_ptr;
2285 DEBUG_PRINT_LOW("Memory Allocation Succeeded for OUT port%p\n",m_out_mem_ptr);
2307 DEBUG_PRINT_ERROR("ERROR: Output buf mem alloc failed[0x%x]\n",m_out_mem_ptr);
2324 *bufferHdr = (m_out_mem_ptr + i );
2564 if(bufferHdr == NULL || m_out_mem_ptr == NULL)
2566 DEBUG_PRINT_ERROR("ERROR: free_output: Invalid bufferHdr[%p] or m_out_mem_ptr[%p]",
2567 bufferHdr, m_out_mem_ptr);
2570 index = bufferHdr - m_out_mem_ptr;
2837 if(!m_out_mem_ptr)
2851 m_out_mem_ptr = (OMX_BUFFERHEADERTYPE *)calloc(nBufHdrSize,1);
2867 if(m_out_mem_ptr && m_pOutput_pmem)
2869 bufHdr = m_out_mem_ptr;
2892 DEBUG_PRINT_ERROR("ERROR: calloc() failed for m_out_mem_ptr/m_pOutput_pmem");
2948 *bufferHdr = (m_out_mem_ptr + i );
3179 nPortIndex = buffer - (OMX_BUFFERHEADERTYPE*)m_out_mem_ptr;
3193 if(m_out_mem_ptr)
3195 DEBUG_PRINT_LOW("Freeing m_out_mem_ptr\n");
3196 free (m_out_mem_ptr);
3197 m_out_mem_ptr = NULL;
3563 if(bufferAdd == NULL || ((bufferAdd - m_out_mem_ptr) >= m_sOutPortDef.nBufferCountActual) )
3582 pmem_data_buf = (OMX_U8 *)m_pOutput_pmem[bufferAdd - m_out_mem_ptr].buffer;
3585 if(dev_fill_buf(bufferAdd, pmem_data_buf,(bufferAdd - m_out_mem_ptr),m_pOutput_pmem[bufferAdd - m_out_mem_ptr].fd) != true)
3858 if(m_out_mem_ptr == NULL)
3863 if(m_out_mem_ptr )
3935 if(m_out_mem_ptr)
4001 if(buffer == NULL || ((buffer - m_out_mem_ptr) > m_sOutPortDef.nBufferCountActual))