Home
last modified time | relevance | path

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

/aosp12/frameworks/av/media/codec2/vndk/util/
H A DC2InterfaceUtils.cpp328 : _mType(values.type), in Impl()
349 switch (_mType) { in supports()
385 _mType(type_t::RANGE), in Impl()
398 switch (_mType) {
421 _mType = type_t::VALUES; in none()
440 switch (_mType) { in limitTo()
481 switch (_mType) { in limitTo()
501 _mType = type_t::EMPTY; in limitTo()
519 switch (_mType) { in limitTo()
530 _mType = type_t::EMPTY; in limitTo()
[all …]
H A DC2Debug.cpp241 C2FieldSupportedValues::type_t _mType; member
254 if (_mType == C2FieldSupportedValues::RANGE) { in streamOut()
256 } else if (_mType == C2FieldSupportedValues::VALUES) { in streamOut()
258 } else if (_mType == C2FieldSupportedValues::FLAGS) { in streamOut()
261 os << "Unknown FSV type: " << (uint32_t)_mType; in streamOut()
/aosp12/frameworks/av/media/codec2/core/include/
H A DC2Param.h902 C2Value() : _mType(NO_INIT) { } in C2Value()
904 inline type_t type() const { return _mType; } in type()
908 if (_mType == typeFor<T>()) { in get()
922 return SizeFor(_mType); in sizeOf()
939 type_t _mType;
1032 : _mType(this->GetType((B*)nullptr)), in C2FieldDescriptor()
1041 : _mType(this->GetType((B*)nullptr)), in C2FieldDescriptor()
1067 : _mType(desc._mType), _mExtent(desc._mExtent), in C2FieldDescriptor()
1071 type_t _mType; member
1176 : _mType(type), _mFields(fields) { }
[all …]
H A DC2Component.h44 type_t _mType; member
50 : _mField(field_), _mType(type_), status(C2_NO_INIT) { } in C2FieldSupportedValuesQuery()
64 inline type_t type() const { return _mType; } in type()