OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mCurrentTimestamp
(Results
1 - 6
of
6
) sorted by null
/frameworks/av/media/libstagefright/
SurfaceMediaSource.cpp
43
mCurrentTimestamp
(0),
86
return
mCurrentTimestamp
;
352
int64_t prevTimeStamp =
mCurrentTimestamp
;
353
mCurrentTimestamp
= item.mTimestamp;
362
(*buffer)->meta_data()->setInt64(kKeyTime,
mCurrentTimestamp
/ 1000);
364
mNumFramesEncoded,
mCurrentTimestamp
/ 1000,
365
mCurrentTimestamp
/ 1000 - prevTimeStamp / 1000);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
Filter.java
68
private long
mCurrentTimestamp
= Frame.TIMESTAMP_NOT_SET;
618
mCurrentTimestamp
= Frame.TIMESTAMP_NOT_SET;
670
return
mCurrentTimestamp
;
674
if (timestamp >
mCurrentTimestamp
||
mCurrentTimestamp
== Frame.TIMESTAMP_NOT_SET) {
675
mCurrentTimestamp
= timestamp;
/frameworks/av/include/media/stagefright/
SurfaceMediaSource.h
185
//
mCurrentTimestamp
is the timestamp for the current texture. It
187
int64_t
mCurrentTimestamp
;
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
Filter.java
68
private long
mCurrentTimestamp
;
251
if (mLogVerbose) Log.v(TAG, "Default-setting output Frame timestamp on port " + name + " to " +
mCurrentTimestamp
);
252
frame.setTimestamp(
mCurrentTimestamp
);
259
if (
mCurrentTimestamp
== Frame.TIMESTAMP_UNKNOWN) {
260
mCurrentTimestamp
= result.getTimestamp();
261
if (mLogVerbose) Log.v(TAG, "Default-setting current timestamp from input port " + name + " to " +
mCurrentTimestamp
);
473
mCurrentTimestamp
= Frame.TIMESTAMP_UNKNOWN;
/frameworks/native/include/gui/
GLConsumer.h
343
//
mCurrentTimestamp
is the timestamp for the current texture. It
345
int64_t
mCurrentTimestamp
;
/frameworks/native/libs/gui/
GLConsumer.cpp
125
mCurrentTimestamp
(0),
260
mCurrentTimestamp
= 0;
422
mCurrentTimestamp
= item.mTimestamp;
868
return
mCurrentTimestamp
;
[
all
...]
Completed in 470 milliseconds