Searched refs:pTime (Results 1 - 12 of 12) sorted by relevance

/frameworks/av/libvideoeditor/osal/src/
H A DM4OSA_Clock.c56 M4OSA_ERR M4OSA_clockGetTime(M4OSA_Time* pTime, M4OSA_UInt32 timescale) argument
67 pTime, timescale);
69 M4OSA_DEBUG_IF2(M4OSA_NULL == pTime, M4ERR_PARAMETER,
70 "M4OSA_clockGetTime: pTime is M4OSA_NULL");
93 *pTime = (M4OSA_Time)u32_time;
/frameworks/av/libvideoeditor/osal/inc/
H A DM4OSA_Clock.h40 M4OSAL_CLOCK_EXPORT_TYPE M4OSA_ERR M4OSA_clockGetTime(M4OSA_Time* pTime,
/frameworks/av/libvideoeditor/vss/common/inc/
H A DM4DECODER_Common.h334 * @param pTime: (IN/OUT) IN: Time to decode up to (in milli secondes)
346 typedef M4OSA_ERR (M4DECODER_decode_fct) (M4OSA_Context context, M4_MediaTime* pTime,
354 * @param pTime: (IN/OUT) IN: Time to render to (in milli secondes)
367 typedef M4OSA_ERR (M4DECODER_render_fct) (M4OSA_Context context, M4_MediaTime* pTime,
H A DM4READER_Common.h583 * @param pTime (IN/OUT) IN: the time to jump to (in ms)
594 M4OSA_Int32* pTime);
620 * @param pTime (IN/OUT) IN: the time to search from (in ms)
630 M4OSA_Int32* pTime);
/frameworks/base/media/jni/mediaeditor/
H A DVideoBrowserMain.h132 * @param pTime (IN/OUT) : Pointer on the time to reach. Updated by
136 M4OSA_ERR videoBrowserPrepareFrame(M4OSA_Context pContext, M4OSA_UInt32* pTime,
H A DVideoBrowserMain.c435 * M4OSA_Context pContext, M4OSA_UInt32* pTime);
438 * @param pTime (IN/OUT) : Pointer on the time to reach. Updated
444 M4OSA_ERR videoBrowserPrepareFrame(M4OSA_Context pContext, M4OSA_UInt32* pTime, argument
455 CHECK_PTR(videoBrowserPrepareFrame, pTime, err, M4ERR_PARAMETER);
457 targetTime = *pTime ;
500 *pTime = pC->m_currentCTS;
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DVideoEditorVideoDecoder.cpp1332 M4_MediaTime* pTime, M4OSA_Bool bJump, M4OSA_UInt32 tolerance) {
1350 if(pDecShellContext->m_lastDecodedCTS >= *pTime) {
1363 pDecShellContext->mFirstInputCts = *pTime;
1365 pDecShellContext->mLastInputCts = *pTime;
1367 while (pDecoderBuffer == NULL || pDecShellContext->m_lastDecodedCTS + tolerance < *pTime) {
1369 pDecShellContext->m_lastDecodedCTS, *pTime);
1374 int64_t time_us = *pTime * 1000;
1433 * buffers have a timestamp >= the target time, *pTime (for instance,
1438 * If *pTime does not have the same value as any of the existing
1439 * video frames, we would like to get the buffer right before *pTime
1331 VideoEditorVideoDecoder_decode(M4OSA_Context context, M4_MediaTime* pTime, M4OSA_Bool bJump, M4OSA_UInt32 tolerance) argument
1569 VideoEditorVideoDecoder_render(M4OSA_Context context, M4_MediaTime* pTime, M4VIFI_ImagePlane* pOutputPlane, M4OSA_Bool bForceRender) argument
[all...]
H A DVideoEditor3gpReader.cpp847 * @param pTime (I/O)IN the time to jump to (in ms)
854 M4_StreamHandler *pStreamHandler, M4OSA_Int32* pTime) {
864 M4OSA_DEBUG_IF1((pTime == 0), M4ERR_PARAMETER,
869 if (*pTime == (pStreamHandler->m_duration)) {
870 *pTime -= 1;
872 time64 = (M4OSA_Time)*pTime;
905 *pTime = (M4OSA_Int32)time64;
1918 M4_StreamHandler *pStreamHandler, M4OSA_Int32* pTime)
1934 M4OSA_DEBUG_IF1((pTime == 0), M4ERR_PARAMETER,
1936 if (*pTime
853 VideoEditor3gpReader_jump(M4OSA_Context context, M4_StreamHandler *pStreamHandler, M4OSA_Int32* pTime) argument
1917 VideoEditor3gpReader_getPrevRapTime(M4OSA_Context context, M4_StreamHandler *pStreamHandler, M4OSA_Int32* pTime) argument
[all...]
H A DVideoEditorMp3Reader.cpp361 * @param pTime (I/O)IN:the time to jump to (in ms)
368 M4_StreamHandler *pStreamHandler, M4OSA_Int32* pTime) {
374 M4OSA_Time time64 = (M4OSA_Time)*pTime;
381 M4OSA_DEBUG_IF1((pTime == 0), M4ERR_PARAMETER,
407 *pTime = (M4OSA_Int32)time64;
367 VideoEditorMp3Reader_jump(M4OSA_Context context, M4_StreamHandler *pStreamHandler, M4OSA_Int32* pTime) argument
/frameworks/av/libvideoeditor/vss/src/
H A DM4READER_Amr.c578 * @param pTime (IN/OUT) IN: the time to jump to (in ms)
588 M4OSA_Int32* pTime)
594 M4OSA_Time time64 = (M4OSA_Time)*pTime;
600 M4OSA_DEBUG_IF1((pTime == 0), M4ERR_PARAMETER, "M4READER_3GP_jump: invalid time pointer");
636 *pTime = (M4OSA_Int32)time64;
587 M4READER_AMR_jump(M4OSA_Context context, M4_StreamHandler *pStreamHandler, M4OSA_Int32* pTime) argument
H A DM4READER_Pcm.c591 * @param pTime (IN/OUT) IN: the time to jump to (in ms)
602 M4OSA_Int32* pTime)
613 M4OSA_DEBUG_IF1((pTime == 0), M4ERR_PARAMETER, "M4READER_PCM_jump: invalid time pointer");
615 time64 = (M4OSA_Time)*pTime;
646 *pTime = (M4OSA_Int32)time64;
601 M4READER_PCM_jump(M4OSA_Context context, M4_StreamHandler *pStreamHandler, M4OSA_Int32* pTime) argument
H A DM4DECODER_Null.c287 * @param pTime: (IN/OUT) IN: Time to decode up to (in msec)
297 M4_MediaTime* pTime, M4OSA_Bool bJump,
309 * @param pTime: (IN/OUT) IN: Time to render to (in msecs)
323 M4OSA_ERR M4DECODER_NULL_render(M4OSA_Context context, M4_MediaTime* pTime, argument
296 M4DECODER_NULL_decode(M4OSA_Context context, M4_MediaTime* pTime, M4OSA_Bool bJump, M4OSA_UInt32 tolerance) argument

Completed in 896 milliseconds