Searched defs:mCurrentTimestamp (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/include/media/stagefright/
H A DSurfaceMediaSource.h185 // mCurrentTimestamp is the timestamp for the current texture. It
187 int64_t mCurrentTimestamp; member in class:android::SurfaceMediaSource
/frameworks/native/include/gui/
H A DGLConsumer.h343 // mCurrentTimestamp is the timestamp for the current texture. It
345 int64_t mCurrentTimestamp; member in class:android::GLConsumer
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFilter.java68 private long mCurrentTimestamp = Frame.TIMESTAMP_NOT_SET; field in class:Filter
618 mCurrentTimestamp = Frame.TIMESTAMP_NOT_SET;
670 return mCurrentTimestamp;
674 if (timestamp > mCurrentTimestamp || mCurrentTimestamp == Frame.TIMESTAMP_NOT_SET) {
675 mCurrentTimestamp = timestamp;
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilter.java68 private long mCurrentTimestamp; field in class:Filter
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;

Completed in 690 milliseconds