Searched refs:fsv (Results 1 - 2 of 2) sorted by relevance

/hardware/google/av/codec2/vndk/
H A DC2Store.cpp143 const C2FieldSupportedValues &fsv = query[0].values; local
144 if (fsv.type == C2FieldSupportedValues::FLAGS && !fsv.values.empty()) {
145 minUsage = fsv.values[0].u64;
147 for (C2Value::Primitive v : fsv.values) {
153 const C2FieldSupportedValues &fsv = query[1].values; local
154 if (fsv.type == C2FieldSupportedValues::RANGE && fsv.range.step.u32 > 0) {
155 blockSize = fsv.range.step.u32;
/hardware/google/av/codec2/vndk/util/
H A DC2InterfaceHelper.cpp100 C2FieldSupportedValues fsv; local
102 case C2FieldDescriptor::INT32: fsv = C2SupportedRange<int32_t>::Any(); break;
103 case C2FieldDescriptor::UINT32: fsv = C2SupportedRange<uint32_t>::Any(); break;
104 case C2FieldDescriptor::INT64: fsv = C2SupportedRange<int64_t>::Any(); break;
105 case C2FieldDescriptor::UINT64: fsv = C2SupportedRange<uint64_t>::Any(); break;
106 case C2FieldDescriptor::FLOAT: fsv = C2SupportedRange<float>::Any(); break;
107 case C2FieldDescriptor::BLOB: fsv = C2SupportedRange<uint8_t>::Any(); break;
108 case C2FieldDescriptor::STRING: fsv = C2SupportedRange<char>::Any(); break;
112 fsvPointer = std::make_unique<C2FieldSupportedValues>(fsv);

Completed in 51 milliseconds