Home | History | Annotate | Download | only in src

Lines Matching refs:m_out_mem_ptr

234     m_out_mem_ptr(NULL),
2304 if (!m_out_mem_ptr) {
2318 m_out_mem_ptr = (OMX_BUFFERHEADERTYPE *)calloc(nBufHdrSize,1);
2319 if (m_out_mem_ptr == NULL) {
2320 DEBUG_PRINT_ERROR("ERROR: calloc() Failed for m_out_mem_ptr");
2336 if (m_out_mem_ptr) {
2337 bufHdr = m_out_mem_ptr;
2338 DEBUG_PRINT_LOW("Memory Allocation Succeeded for OUT port%p",m_out_mem_ptr);
2357 DEBUG_PRINT_ERROR("ERROR: Output buf mem alloc failed[0x%p]",m_out_mem_ptr);
2370 *bufferHdr = (m_out_mem_ptr + i );
2597 if (bufferHdr == NULL || m_out_mem_ptr == NULL) {
2598 DEBUG_PRINT_ERROR("ERROR: free_output: Invalid bufferHdr[%p] or m_out_mem_ptr[%p]",
2599 bufferHdr, m_out_mem_ptr);
2602 index = bufferHdr - m_out_mem_ptr;
2879 if (!m_out_mem_ptr) {
2892 m_out_mem_ptr = (OMX_BUFFERHEADERTYPE *)calloc(nBufHdrSize,1);
2906 if (m_out_mem_ptr && m_pOutput_pmem) {
2907 bufHdr = m_out_mem_ptr;
2929 DEBUG_PRINT_ERROR("ERROR: calloc() failed for m_out_mem_ptr/m_pOutput_pmem");
3006 *bufferHdr = (m_out_mem_ptr + i );
3198 nPortIndex = buffer - (OMX_BUFFERHEADERTYPE*)m_out_mem_ptr;
3210 if (m_out_mem_ptr) {
3211 DEBUG_PRINT_LOW("Freeing m_out_mem_ptr");
3212 free (m_out_mem_ptr);
3213 m_out_mem_ptr = NULL;
3580 if (bufferAdd == NULL || ((bufferAdd - m_out_mem_ptr) >= (int)m_sOutPortDef.nBufferCountActual) ) {
3596 pmem_data_buf = (OMX_U8 *)m_pOutput_pmem[bufferAdd - m_out_mem_ptr].buffer;
3599 if (dev_fill_buf(bufferAdd, pmem_data_buf,(bufferAdd - m_out_mem_ptr),m_pOutput_pmem[bufferAdd - m_out_mem_ptr].fd) != true) {
3853 if (m_out_mem_ptr == NULL) {
3857 if (m_out_mem_ptr ) {
3922 if (m_out_mem_ptr) {
3975 int index = buffer - m_out_mem_ptr;
3979 if (buffer == NULL || ((buffer - m_out_mem_ptr) > (int)m_sOutPortDef.nBufferCountActual)) {