Home
last modified time | relevance | path

Searched refs:maxBframes (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/media/codec2/components/hevc/
DC2SoftHevcEnc.cpp48 uint32_t *syncInterval, uint32_t *iInterval, uint32_t *maxBframes) { in ParseGop() argument
65 if (layer.type_ == C2Config::picture_type_t(P_FRAME | B_FRAME) && maxBframes) { in ParseGop()
66 *maxBframes = layer.count; in ParseGop()
255 uint32_t maxBframes = 0; in InputDelaySetter() local
256 ParseGop(gop.v, nullptr, nullptr, &maxBframes); in InputDelaySetter()
257 me.set().value = maxBframes + DEFAULT_RC_LOOKAHEAD; in InputDelaySetter()
588 uint32_t maxBframes = 0; in initEncParams() local
589 ParseGop(*mGop, &syncInterval, &iInterval, &maxBframes); in initEncParams()
598 if (mBframes != maxBframes) { in initEncParams()
599 ALOGD("Updating max B frames from GOP: old %u new %u", mBframes, maxBframes); in initEncParams()
[all …]
/frameworks/av/media/codec2/components/avc/
DC2SoftAvcEnc.cpp49 uint32_t *syncInterval, uint32_t *iInterval, uint32_t *maxBframes) { in ParseGop() argument
66 if (layer.type_ == C2Config::picture_type_t(P_FRAME | B_FRAME) && maxBframes) { in ParseGop()
67 *maxBframes = layer.count; in ParseGop()
260 uint32_t maxBframes = 0; in InputDelaySetter() local
261 ParseGop(gop.v, nullptr, nullptr, &maxBframes); in InputDelaySetter()
262 me.set().value = maxBframes; in InputDelaySetter()
1165 uint32_t maxBframes = 0; in initEncoder() local
1166 ParseGop(*gop, &syncInterval, &iInterval, &maxBframes); in initEncoder()
1175 if (mBframes != maxBframes) { in initEncoder()
1176 ALOGD("Updating max B frames from GOP: old %u new %u", mBframes, maxBframes); in initEncoder()
[all …]
/frameworks/av/media/codec2/sfplugin/
DCCodec.cpp1136 int32_t maxBframes = 0; in configure() local
1139 && sdkParams->findInt32(KEY_MAX_B_FRAMES, &maxBframes) in configure()
1140 && maxBframes > 0) { in configure()
1146 uint32_t(maxBframes) in configure()
/frameworks/av/media/libstagefright/
DACodec.cpp4609 int32_t maxBframes = 0; in setupAVCEncoderParameters() local
4610 (void)msg->findInt32(KEY_MAX_B_FRAMES, &maxBframes); in setupAVCEncoderParameters()
4611 h264type.nBFrames = uint32_t(maxBframes); in setupAVCEncoderParameters()