Lines Matching defs:timestamp

1592         OMX_U32 flags, OMX_TICKS timestamp, int fenceFd) {
1599 flags, timestamp, fenceFd);
1603 buffer, omxBuffer.mGraphicBuffer, flags, timestamp, fenceFd);
1607 buffer, omxBuffer.mNativeHandle, flags, timestamp, fenceFd);
1619 OMX_U32 flags, OMX_TICKS timestamp, int fenceFd) {
1657 return emptyBuffer_l(header, flags, timestamp, (intptr_t)buffer, fenceFd);
1728 OMX_BUFFERHEADERTYPE *header, OMX_U32 flags, OMX_TICKS timestamp,
1731 header->nTimeStamp = timestamp;
1770 OMX_U32 flags, OMX_TICKS timestamp, int fenceFd) {
1785 int64_t codecTimeUs = getCodecTimestamp(timestamp);
1809 int64_t OMXNodeInstance::getCodecTimestamp(OMX_TICKS timestamp) {
1810 int64_t originalTimeUs = timestamp;
1813 /* Cap timestamp gap between adjacent frames to specified max
1822 timestamp = (timestampGapUs < mMaxTimestampGapUs ?
1825 ALOGV("IN timestamp: %lld -> %lld",
1827 static_cast<long long>(timestamp));
1831 mPrevModifiedTimeUs = timestamp;
1834 mOriginalTimeUs.add(timestamp, originalTimeUs);
1837 return timestamp;
1842 OMX_U32 flags, OMX_TICKS timestamp, int fenceFd) {
1860 return emptyBuffer_l(header, flags, timestamp, (intptr_t)header->pBuffer, fenceFd);
1871 OMX_TICKS &timestamp = msg.u.extended_buffer_data.timestamp;
1874 ssize_t index = mOriginalTimeUs.indexOfKey(timestamp);
1876 ALOGV("OUT timestamp: %lld -> %lld",
1877 static_cast<long long>(timestamp),
1879 timestamp = mOriginalTimeUs[index];
1883 ALOGW("giving up limiting timestamp gap (pts = %lld)", timestamp);
1944 // fix up the buffer info (especially timestamp) if needed
2165 msg.u.render_data.timestamp = renderData[i].nMediaTimeUs;
2231 msg.u.extended_buffer_data.timestamp = pBuffer->nTimeStamp;