Searched refs:maxBframes (Results 1 – 4 of 4) sorted by relevance
/frameworks/av/media/codec2/components/hevc/ |
D | C2SoftHevcEnc.cpp | 47 uint32_t *syncInterval, uint32_t *iInterval, uint32_t *maxBframes) { in ParseGop() argument 64 if (layer.type_ == C2Config::picture_type_t(P_FRAME | B_FRAME) && maxBframes) { in ParseGop() 65 *maxBframes = layer.count; in ParseGop() 218 uint32_t maxBframes = 0; in InputDelaySetter() local 219 ParseGop(gop.v, nullptr, nullptr, &maxBframes); in InputDelaySetter() 220 me.set().value = maxBframes + DEFAULT_RC_LOOKAHEAD; in InputDelaySetter() 521 uint32_t maxBframes = 0; in initEncParams() local 522 ParseGop(*mGop, &syncInterval, &iInterval, &maxBframes); in initEncParams() 531 if (mBframes != maxBframes) { in initEncParams() 532 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 | 46 uint32_t *syncInterval, uint32_t *iInterval, uint32_t *maxBframes) { in ParseGop() argument 63 if (layer.type_ == C2Config::picture_type_t(P_FRAME | B_FRAME) && maxBframes) { in ParseGop() 64 *maxBframes = layer.count; in ParseGop() 208 uint32_t maxBframes = 0; in InputDelaySetter() local 209 ParseGop(gop.v, nullptr, nullptr, &maxBframes); in InputDelaySetter() 210 me.set().value = maxBframes; in InputDelaySetter() 933 uint32_t maxBframes = 0; in initEncoder() local 934 ParseGop(*gop, &syncInterval, &iInterval, &maxBframes); in initEncoder() 943 if (mBframes != maxBframes) { in initEncoder() 944 ALOGD("Updating max B frames from GOP: old %u new %u", mBframes, maxBframes); in initEncoder() [all …]
|
/frameworks/av/media/codec2/sfplugin/ |
D | CCodec.cpp | 878 int32_t maxBframes = 0; in configure() local 881 && sdkParams->findInt32(KEY_MAX_B_FRAMES, &maxBframes) in configure() 882 && maxBframes > 0) { in configure() 888 uint32_t(maxBframes) in configure()
|
/frameworks/av/media/libstagefright/ |
D | ACodec.cpp | 4442 int32_t maxBframes = 0; in setupAVCEncoderParameters() local 4443 (void)msg->findInt32(KEY_MAX_B_FRAMES, &maxBframes); in setupAVCEncoderParameters() 4444 h264type.nBFrames = uint32_t(maxBframes); in setupAVCEncoderParameters()
|