Searched refs:presentationUs (Results 1 – 2 of 2) sorted by relevance
/frameworks/av/media/libstagefright/include/media/stagefright/ |
D | MediaCodec.h | 706 int64_t presentationUs; member 739 void statsBufferSent(int64_t presentationUs, const sp<MediaCodecBuffer> &buffer); 740 void statsBufferReceived(int64_t presentationUs, const sp<MediaCodecBuffer> &buffer);
|
/frameworks/av/media/libstagefright/ |
D | MediaCodec.cpp | 1859 void MediaCodec::statsBufferSent(int64_t presentationUs, const sp<MediaCodecBuffer> &buffer) { in statsBufferSent() argument 1862 if (presentationUs <= 0) { in statsBufferSent() 1863 ALOGV("presentation time: %" PRId64, presentationUs); in statsBufferSent() 1885 BufferFlightTiming_t startdata = { presentationUs, nowNs }; in statsBufferSent() 1896 void MediaCodec::statsBufferReceived(int64_t presentationUs, const sp<MediaCodecBuffer> &buffer) { in statsBufferReceived() argument 1933 if (presentationUs <= 0) { in statsBufferReceived() 1934 ALOGV("-- returned buffer timestamp %" PRId64 " <= 0, ignore it", presentationUs); in statsBufferReceived() 1950 startdata.presentationUs, startdata.startedNs); in statsBufferReceived() 1951 if (startdata.presentationUs == presentationUs) { in statsBufferReceived() 1954 startdata.presentationUs, presentationUs); in statsBufferReceived() [all …]
|