OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:presentationUs
(Results
1 - 2
of
2
) sorted by null
/frameworks/av/media/libstagefright/include/media/stagefright/
MediaCodec.h
454
int64_t
presentationUs
;
461
void statsBufferSent(int64_t
presentationUs
);
462
void statsBufferReceived(int64_t
presentationUs
);
/frameworks/av/media/libstagefright/
MediaCodec.cpp
737
void MediaCodec::statsBufferSent(int64_t
presentationUs
) {
740
if (
presentationUs
<= 0) {
741
ALOGV("presentation time: %" PRId64,
presentationUs
);
746
BufferFlightTiming_t startdata = {
presentationUs
, nowNs };
760
void MediaCodec::statsBufferReceived(int64_t
presentationUs
) {
773
if (
presentationUs
<= 0) {
774
ALOGV("-- returned buffer timestamp %" PRId64 " <= 0, ignore it",
presentationUs
);
784
startdata.
presentationUs
, startdata.startedNs);
785
if (startdata.
presentationUs
==
presentationUs
) {
[
all
...]
Completed in 359 milliseconds