HomeSort by relevance Sort by last modified time
    Searched refs:apContext (Results 1 - 2 of 2) sorted by null

  /frameworks/av/libvideoeditor/osal/src/
LVOSA_FileReader_optim.c 154 M4OSA_ERR M4OSA_FileReader_BufferInit(M4OSA_FileReader_Context_optim* apContext)
161 apContext->buffer[i].data = M4OSA_NULL;
162 apContext->buffer[i].size = 0;
163 apContext->buffer[i].filepos = 0;
164 apContext->buffer[i].remain = 0;
169 apContext->buffer[i].data = (M4OSA_MemAddr8) M4OSA_32bitAlignedMalloc(M4OSA_READBUFFER_SIZE,
171 M4ERR_CHECK_NULL_RETURN_VALUE(M4ERR_ALLOC, apContext->buffer[i].data);
178 M4OSA_Void M4OSA_FileReader_BufferFree(M4OSA_FileReader_Context_optim* apContext)
184 if(apContext->buffer[i].data != M4OSA_NULL)
185 free(apContext->buffer[i].data)
    [all...]
  /frameworks/av/libvideoeditor/vss/3gpwriter/src/
M4MP4W_Interface.c 93 M4WRITER_3GP_InternalContext* apContext;
108 apContext = (M4WRITER_3GP_InternalContext*)M4OSA_32bitAlignedMalloc(
113 if (M4OSA_NULL == apContext)
122 apContext->pMP4Context = M4OSA_NULL;
123 apContext->maxAUsizes = 0;
127 *pContext = (M4WRITER_Context *)apContext;
133 err = M4MP4W_openWrite(&apContext->pMP4Context, outputFileDescriptor,
162 M4WRITER_3GP_InternalContext* apContext =
171 M4OSA_DEBUG_IF2((M4OSA_NULL == apContext),M4ERR_PARAMETER,
177 err = M4MP4W_startWriting(apContext->pMP4Context)
    [all...]

Completed in 43 milliseconds