Home
last modified time | relevance | path

Searched refs:mMaxPtsGapUs (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/av/media/libstagefright/include/media/stagefright/
H A DACodec.h300 int64_t mMaxPtsGapUs; member
/aosp12/frameworks/av/media/libstagefright/
H A DACodec.cpp584 mMaxPtsGapUs(0LL), in ACodec()
1876 if (!msg->findInt64(KEY_MAX_PTS_GAP_TO_ENCODER, &mMaxPtsGapUs)) { in configureCodec()
1877 mMaxPtsGapUs = 0LL; in configureCodec()
1878 } else if (mMaxPtsGapUs > INT32_MAX || mMaxPtsGapUs < INT32_MIN) { in configureCodec()
1879 ALOGW("Unsupported value for max pts gap %lld", (long long) mMaxPtsGapUs); in configureCodec()
1880 mMaxPtsGapUs = 0LL; in configureCodec()
1888 if (mMaxPtsGapUs < 0LL) { in configureCodec()
7142 if (mCodec->mIsVideo && mCodec->mMaxPtsGapUs != 0LL) { in setupInputSurface()
7146 maxPtsGapParams.nU32 = (uint32_t)mCodec->mMaxPtsGapUs; in setupInputSurface()
7159 if (mCodec->mMaxFps > 0 || mCodec->mMaxPtsGapUs < 0) { in setupInputSurface()