HomeSort by relevance Sort by last modified time
    Searched defs:mCurrentTimestamp (Results 1 - 4 of 4) sorted by null

  /frameworks/av/include/media/stagefright/
SurfaceMediaSource.h 192 // mCurrentTimestamp is the timestamp for the current texture. It
194 int64_t mCurrentTimestamp;
  /frameworks/native/include/gui/
GLConsumer.h 389 // mCurrentTimestamp is the timestamp for the current texture. It
391 int64_t mCurrentTimestamp;
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
Filter.java 67 private long mCurrentTimestamp;
250 if (mLogVerbose) Log.v(TAG, "Default-setting output Frame timestamp on port " + name + " to " + mCurrentTimestamp);
251 frame.setTimestamp(mCurrentTimestamp);
258 if (mCurrentTimestamp == Frame.TIMESTAMP_UNKNOWN) {
259 mCurrentTimestamp = result.getTimestamp();
260 if (mLogVerbose) Log.v(TAG, "Default-setting current timestamp from input port " + name + " to " + mCurrentTimestamp);
472 mCurrentTimestamp = Frame.TIMESTAMP_UNKNOWN;
  /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;

Completed in 7016 milliseconds