Home | History | Annotate | Download | only in src

Lines Matching refs:M4OSA_NULL

54     M4OSA_DEBUG_IF1((M4OSA_NULL == pC), M4ERR_PARAMETER, "invalid context pointer");
57 pC->pWriterGlobalFcts = M4OSA_NULL;
58 pC->pWriterDataFcts = M4OSA_NULL;
59 pC->pVideoEncoderGlobalFcts = M4OSA_NULL;
60 pC->pAudioEncoderGlobalFcts = M4OSA_NULL;
62 pC->pCurrentVideoEncoderExternalAPI = M4OSA_NULL;
63 pC->pCurrentVideoEncoderUserData = M4OSA_NULL;
67 pC->WriterInterface[i].pGlobalFcts = M4OSA_NULL;
68 pC->WriterInterface[i].pDataFcts = M4OSA_NULL;
73 pC->pVideoEncoderInterface[i] = M4OSA_NULL;
74 pC->pVideoEncoderExternalAPITable[i] = M4OSA_NULL;
75 pC->pVideoEncoderUserDataTable[i] = M4OSA_NULL;
80 pC->pAudioEncoderInterface[i] = M4OSA_NULL;
82 pC->pAudioEncoderUserDataTable[i] = M4OSA_NULL;
86 pC->m_pReader = M4OSA_NULL;
87 pC->m_pReaderDataIt = M4OSA_NULL;
92 pC->m_pReaderGlobalItTable[i] = M4OSA_NULL;
93 pC->m_pReaderDataItTable[i] = M4OSA_NULL;
96 pC->m_pVideoDecoder = M4OSA_NULL;
98 pC->m_pCurrentVideoDecoderUserData = M4OSA_NULL;
103 pC->m_pVideoDecoderItTable[i] = M4OSA_NULL;
105 pC->m_pVideoDecoderUserDataTable[i] = M4OSA_NULL;
109 pC->m_pAudioDecoder = M4OSA_NULL;
112 pC->m_pAudioDecoderItTable[i] = M4OSA_NULL;
114 pC->m_pAudioDecoderUserDataTable[i] = M4OSA_NULL;
129 * pWtrDataInterface is M4OSA_NULL
141 M4OSA_DEBUG_IF2((pC == M4OSA_NULL),M4ERR_PARAMETER,
142 "MCS: context is M4OSA_NULL in M4MCS_registerWriter");
143 M4OSA_DEBUG_IF2((pWtrGlobalInterface == M4OSA_NULL),M4ERR_PARAMETER,
144 "pWtrGlobalInterface is M4OSA_NULL in M4MCS_registerWriter");
145 M4OSA_DEBUG_IF2((pWtrDataInterface == M4OSA_NULL),M4ERR_PARAMETER,
146 "pWtrDataInterface is M4OSA_NULL in M4MCS_registerWriter");
158 if (pC->WriterInterface[MediaType].pGlobalFcts != M4OSA_NULL)
181 * @return M4ERR_PARAMETER pContext or pEncGlobalInterface is M4OSA_NULL (debug only),
194 M4OSA_DEBUG_IF2((pC == M4OSA_NULL),M4ERR_PARAMETER,
195 "MCS: context is M4OSA_NULL in M4MCS_registerVideoEncoder");
196 M4OSA_DEBUG_IF2((pEncGlobalInterface == M4OSA_NULL),M4ERR_PARAMETER,
197 "pEncGlobalInterface is M4OSA_NULL in M4MCS_registerVideoEncoder");
208 if (pC->pVideoEncoderInterface[MediaType] != M4OSA_NULL)
214 pC->pVideoEncoderInterface[MediaType] = M4OSA_NULL;
222 pC->pVideoEncoderUserDataTable[MediaType] = M4OSA_NULL;
223 pC->pVideoEncoderExternalAPITable[MediaType] = M4OSA_NULL;
239 * M4OSA_NULL (debug only)
251 M4OSA_DEBUG_IF2((pC == M4OSA_NULL),M4ERR_PARAMETER,
252 "MCS: context is M4OSA_NULL in M4MCS_registerAudioEncoder");
253 M4OSA_DEBUG_IF2((pEncGlobalInterface == M4OSA_NULL),M4ERR_PARAMETER,
254 "pEncGlobalInterface is M4OSA_NULL in M4MCS_registerAudioEncoder");
265 if(M4OSA_NULL != pC->pAudioEncoderInterface[MediaType])
268 pC->pAudioEncoderInterface[MediaType] = M4OSA_NULL;
270 if(M4OSA_NULL != pC->pAudioEncoderUserDataTable[MediaType])
273 pC->pAudioEncoderUserDataTable[MediaType] = M4OSA_NULL;
302 M4OSA_DEBUG_IF1((M4OSA_NULL == pC), M4ERR_PARAMETER, "invalid context pointer");
303 M4OSA_DEBUG_IF1((M4OSA_NULL == pRdrGlobalInterface),
305 M4OSA_DEBUG_IF1((M4OSA_NULL == pRdrDataInterface),
314 if (pC->m_pReaderGlobalItTable[mediaType] != M4OSA_NULL)
348 M4OSA_DEBUG_IF1((M4OSA_NULL == pC), M4ERR_PARAMETER, "invalid context pointer");
349 M4OSA_DEBUG_IF1((M4OSA_NULL == pDecoderInterface), M4ERR_PARAMETER,
358 if (pC->m_pVideoDecoderItTable[decoderType] != M4OSA_NULL)
369 pC->m_pVideoDecoderItTable[decoderType] = M4OSA_NULL;
371 if (pC->m_pVideoDecoderUserDataTable[decoderType] != M4OSA_NULL)
374 pC->m_pVideoDecoderUserDataTable[decoderType] = M4OSA_NULL;
381 pC->m_pVideoDecoderUserDataTable[decoderType] = M4OSA_NULL;
410 M4OSA_DEBUG_IF1((M4OSA_NULL == pC), M4ERR_PARAMETER, "invalid context pointer");
411 M4OSA_DEBUG_IF1((M4OSA_NULL == pDecoderInterface), M4ERR_PARAMETER,
420 if(M4OSA_NULL != pC->m_pAudioDecoderItTable[decoderType])
423 pC->m_pAudioDecoderItTable[decoderType] = M4OSA_NULL;
425 if(M4OSA_NULL != pC->m_pAudioDecoderUserDataTable[decoderType])
428 pC->m_pAudioDecoderUserDataTable[decoderType] = M4OSA_NULL;
451 M4OSA_DEBUG_IF1((M4OSA_NULL == pC), M4ERR_PARAMETER, "invalid context pointer");
455 if (pC->WriterInterface[i].pGlobalFcts != M4OSA_NULL)
458 pC->WriterInterface[i].pGlobalFcts = M4OSA_NULL;
460 if (pC->WriterInterface[i].pDataFcts != M4OSA_NULL)
463 pC->WriterInterface[i].pDataFcts = M4OSA_NULL;
467 pC->pWriterGlobalFcts = M4OSA_NULL;
468 pC->pWriterDataFcts = M4OSA_NULL;
487 M4OSA_DEBUG_IF1((M4OSA_NULL == pC), M4ERR_PARAMETER, "invalid context pointer");
491 if (pC->pVideoEncoderInterface[i] != M4OSA_NULL)
494 pC->pVideoEncoderInterface[i] = M4OSA_NULL;
500 if (pC->pAudioEncoderInterface[i] != M4OSA_NULL)
507 pC->pAudioEncoderInterface[i] = M4OSA_NULL;
511 pC->pVideoEncoderGlobalFcts = M4OSA_NULL;
512 pC->pAudioEncoderGlobalFcts = M4OSA_NULL;
531 M4OSA_DEBUG_IF1((M4OSA_NULL == pC), M4ERR_PARAMETER, "invalid context pointer");
535 if (pC->m_pReaderGlobalItTable[i] != M4OSA_NULL)
538 pC->m_pReaderGlobalItTable[i] = M4OSA_NULL;
540 if (pC->m_pReaderDataItTable[i] != M4OSA_NULL)
543 pC->m_pReaderDataItTable[i] = M4OSA_NULL;
548 pC->m_pReader = M4OSA_NULL;
549 pC->m_pReaderDataIt = M4OSA_NULL;
568 M4OSA_DEBUG_IF1((M4OSA_NULL == pC), M4ERR_PARAMETER, "invalid context pointer");
572 if (pC->m_pVideoDecoderItTable[i] != M4OSA_NULL)
575 pC->m_pVideoDecoderItTable[i] = M4OSA_NULL;
581 if (pC->m_pAudioDecoderItTable[i] != M4OSA_NULL)
588 pC->m_pAudioDecoderItTable[i] = M4OSA_NULL;
593 pC->m_pVideoDecoder = M4OSA_NULL;
595 pC->m_pAudioDecoder = M4OSA_NULL;
617 M4OSA_DEBUG_IF1((M4OSA_NULL == pC), M4ERR_PARAMETER, "invalid context pointer");
645 if (pC->pWriterGlobalFcts == M4OSA_NULL || pC->pWriterDataFcts == M4OSA_NULL)
652 pC->pWriterDataFcts->pWriterContext = M4OSA_NULL;
675 M4OSA_DEBUG_IF1((M4OSA_NULL == pC), M4ERR_PARAMETER, "invalid context pointer");
700 if (pC->pVideoEncoderGlobalFcts == M4OSA_NULL)
727 M4OSA_DEBUG_IF1((M4OSA_NULL == pC), M4ERR_PARAMETER, "invalid context pointer");
753 if (pC->pAudioEncoderGlobalFcts == M4OSA_NULL)
780 M4OSA_DEBUG_IF1((M4OSA_NULL == pC), M4ERR_PARAMETER, "invalid context pointer");
804 if (pC->m_pReader == M4OSA_NULL || pC->m_pReaderDataIt == M4OSA_NULL)
830 M4OSA_DEBUG_IF1((M4OSA_NULL == pC), M4ERR_PARAMETER, "invalid context pointer");
853 if (pC->m_pVideoDecoder == M4OSA_NULL)
879 M4OSA_DEBUG_IF1((M4OSA_NULL == pC), M4ERR_PARAMETER, "invalid context pointer");
908 if (pC->m_pAudioDecoder == M4OSA_NULL)