Home
last modified time | relevance | path

Searched refs:iTempInputBufferLength (Results 1 – 8 of 8) sorted by relevance

/external/opencore/codecs_v2/omx/omx_amrenc/src/
Domx_amrenc_component.cpp442 if ((iTempInputBufferLength > 0) && in ProcessData()
443 ((iInputCurrLength + iTempInputBufferLength) <= TempInputBufferSize)) in ProcessData()
445 … oscl_memcpy(&ipTempInputBuffer[iTempInputBufferLength], ipFrameDecodeBuffer, iInputCurrLength); in ProcessData()
446 iInputCurrLength += iTempInputBufferLength; in ProcessData()
447 iTempInputBufferLength = 0; in ProcessData()
541 iTempInputBufferLength = RemainderInputBytes; in ProcessData()
/external/opencore/codecs_v2/omx/omx_mp3/src/
Domx_mp3_component.cpp531 if (iTempInputBufferLength > 0 && in ProcessData()
532 ((iInputCurrLength + iTempInputBufferLength) < TempInputBufferSize)) in ProcessData()
534 … oscl_memcpy(&ipTempInputBuffer[iTempInputBufferLength], ipFrameDecodeBuffer, iInputCurrLength); in ProcessData()
535 iInputCurrLength += iTempInputBufferLength; in ProcessData()
536 iTempInputBufferLength = 0; in ProcessData()
662 iTempInputBufferLength = iInputCurrLength; in ProcessData()
/external/opencore/codecs_v2/omx/omx_amr/src/
Domx_amr_component.cpp518 if (iTempInputBufferLength > 0) in DecodeWithoutMarker()
524 TempInLength = iTempInputBufferLength; in DecodeWithoutMarker()
559 iTempConsumedLength += (iTempInputBufferLength - TempInLength); in DecodeWithoutMarker()
560 iInputBufferRemainingBytes -= (iTempInputBufferLength - TempInLength); in DecodeWithoutMarker()
562 iTempInputBufferLength = TempInLength; in DecodeWithoutMarker()
583 if ((0 == iTempInputBufferLength) || (OMX_FALSE == DecodeReturn)) in DecodeWithoutMarker()
619 if ((iTempInputBufferLength != 0 || GetQueueNumElem(pInputQueue) > 0) in DecodeWithoutMarker()
/external/opencore/codecs_v2/omx/omx_aac/src/
Domx_aac_component.cpp539 if (iTempInputBufferLength > 0 && in ProcessData()
540 ((iInputCurrLength + iTempInputBufferLength) < TempInputBufferSize)) in ProcessData()
542 … oscl_memcpy(&ipTempInputBuffer[iTempInputBufferLength], ipFrameDecodeBuffer, iInputCurrLength); in ProcessData()
543 iInputCurrLength += iTempInputBufferLength; in ProcessData()
544 iTempInputBufferLength = 0; in ProcessData()
672 iTempInputBufferLength = iInputCurrLength; in ProcessData()
/external/opencore/codecs_v2/omx/omx_h264/src/
Domx_avc_component.cpp553 if ((!iIsInputBufferEnded) || ((iEndofStream) || (0 != iTempInputBufferLength))) in DecodeWithoutMarker()
622 TempInLength = iTempInputBufferLength; in DecodeWithoutMarker()
640 iTempConsumedLength += (iTempInputBufferLength - TempInLength); in DecodeWithoutMarker()
641 iTempInputBufferLength = TempInLength; in DecodeWithoutMarker()
698 if ((0 == iTempInputBufferLength) && !iDecodeReturn) in DecodeWithoutMarker()
/external/opencore/codecs_v2/omx/omx_baseclass/src/
Dpv_omxcomponent.cpp49 iTempInputBufferLength = 0; in OmxComponentBase()
165 iTempInputBufferLength = 0; in ConstructBaseComponent()
1442 iTempInputBufferLength = 0; in FreeBuffer()
1842 iTempInputBufferLength = 0; in ResetAfterFlush()
2304 iTempInputBufferLength = 0; in DoStateSet()
2883 oscl_memcpy(pTempNewBuffer, ipTempInputBuffer, iTempInputBufferLength); in BufferMgmtWithoutMarker()
2978 if ((((iInputCurrLength + iTempInputBufferLength) < (iInputCurrBufferSize >> 1))) in BufferMgmtWithoutMarker()
3040 if (iTempInputBufferLength < (TempInputBufferSize >> 1)) in TempInputBufferMgmtWithoutMarker()
3042 … oscl_memmove(ipTempInputBuffer, &ipTempInputBuffer[iTempConsumedLength], iTempInputBufferLength); in TempInputBufferMgmtWithoutMarker()
3047 if ((iTempInputBufferLength + iTempConsumedLength + iInputCurrLength) in TempInputBufferMgmtWithoutMarker()
[all …]
/external/opencore/codecs_v2/omx/omx_m4v/src/
Domx_mpeg4_component.cpp598 TempInLength = iTempInputBufferLength; in DecodeWithoutMarker()
664 iTempConsumedLength += (iTempInputBufferLength - TempInLength); in DecodeWithoutMarker()
665 iTempInputBufferLength = TempInLength; in DecodeWithoutMarker()
680 if ((0 == iTempInputBufferLength) || (!DecodeReturn)) in DecodeWithoutMarker()
/external/opencore/codecs_v2/omx/omx_baseclass/include/
Dpv_omxcomponent.h464 OMX_U32 iTempInputBufferLength; variable