Searched refs:maxBframes (Results 1 – 4 of 4) sorted by relevance
/frameworks/av/media/codec2/components/hevc/ |
D | C2SoftHevcEnc.cpp | 48 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/ |
D | C2SoftAvcEnc.cpp | 49 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/ |
D | CCodec.cpp | 1136 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/ |
D | ACodec.cpp | 4609 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()
|