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()
268 uint32_t maxBframes = 0; in InputDelaySetter() local
269 ParseGop(gop.v, nullptr, nullptr, &maxBframes); in InputDelaySetter()
270 me.set().value = maxBframes + DEFAULT_RC_LOOKAHEAD; in InputDelaySetter()
664 uint32_t maxBframes = 0; in initEncParams() local
665 ParseGop(*mGop, &syncInterval, &iInterval, &maxBframes); in initEncParams()
674 if (mBframes != maxBframes) { in initEncParams()
675 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()
271 uint32_t maxBframes = 0; in InputDelaySetter() local
272 ParseGop(gop.v, nullptr, nullptr, &maxBframes); in InputDelaySetter()
273 me.set().value = maxBframes; in InputDelaySetter()
1185 uint32_t maxBframes = 0; in initEncoder() local
1186 ParseGop(*gop, &syncInterval, &iInterval, &maxBframes); in initEncoder()
1195 if (mBframes != maxBframes) { in initEncoder()
1196 ALOGD("Updating max B frames from GOP: old %u new %u", mBframes, maxBframes); in initEncoder()
[all …]
/frameworks/av/media/codec2/sfplugin/
DCCodec.cpp1456 int32_t maxBframes = 0; in configure() local
1459 && sdkParams->findInt32(KEY_MAX_B_FRAMES, &maxBframes) in configure()
1460 && maxBframes > 0) { in configure()
1466 uint32_t(maxBframes) in configure()
/frameworks/av/media/libstagefright/
DACodec.cpp4700 int32_t maxBframes = 0; in setupAVCEncoderParameters() local
4701 (void)msg->findInt32(KEY_MAX_B_FRAMES, &maxBframes); in setupAVCEncoderParameters()
4702 h264type.nBFrames = uint32_t(maxBframes); in setupAVCEncoderParameters()