Home
last modified time | relevance | path

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

/aosp12/frameworks/av/media/codec2/components/flac/
H A DC2SoftFlacEnc.cpp77 DefineParam(mComplexity, C2_PARAMKEY_COMPLEXITY) in IntfImpl()
80 .withFields({C2F(mComplexity, value).inRange( in IntfImpl()
82 .withSetter(Setter<decltype(*mComplexity)>::NonStrictValueWithNoDeps) in IntfImpl()
104 uint32_t getComplexity() const { return mComplexity->value; } in getComplexity()
111 std::shared_ptr<C2StreamComplexityTuning::output> mComplexity; member in android::C2SoftFlacEnc::IntfImpl
/aosp12/frameworks/av/media/codec2/components/hevc/
H A DC2SoftHevcEnc.cpp166 DefineParam(mComplexity, C2_PARAMKEY_COMPLEXITY) in IntfImpl()
168 .withFields({C2F(mComplexity, value).inRange(0, 10)}) in IntfImpl()
169 .withSetter(Setter<decltype(*mComplexity)>::NonStrictValueWithNoDeps) in IntfImpl()
434 return mComplexity; in getComplexity_l()
478 std::shared_ptr<C2StreamComplexityTuning::output> mComplexity; member in android::C2SoftHevcEnc::IntfImpl
674 if (mComplexity->value == 10) { in initEncParams()
676 } else if (mComplexity->value >= 8) { in initEncParams()
678 } else if (mComplexity->value >= 7) { in initEncParams()
680 } else if (mComplexity->value >= 5) { in initEncParams()
721 mComplexity = mIntf->getComplexity_l(); in initEncoder()
H A DC2SoftHevcEnc.h88 std::shared_ptr<C2StreamComplexityTuning::output> mComplexity; member
/aosp12/frameworks/av/media/codec2/components/opus/
H A DC2SoftOpusEnc.cpp101 DefineParam(mComplexity, C2_PARAMKEY_COMPLEXITY) in IntfImpl()
103 .withFields({C2F(mComplexity, value).inRange(1, 10)}) in IntfImpl()
104 .withSetter(Setter<decltype(*mComplexity)>::NonStrictValueWithNoDeps) in IntfImpl()
117 uint32_t getComplexity() const { return mComplexity->value; } in getComplexity()
124 std::shared_ptr<C2StreamComplexityTuning::output> mComplexity; member in android::C2SoftOpusEnc::IntfImpl