Searched refs:c2Value (Results 1 – 5 of 5) sorted by relevance
/frameworks/av/media/codec2/sfplugin/ |
D | ReflectedParamUpdater.cpp | 45 C2Value c2Value; in debugString() local 53 if (it.second.find(&c2Value)) { in debugString() 54 switch (c2Value.type()) { in debugString() 56 (void)c2Value.get(&int32Value); in debugString() 60 (void)c2Value.get(&uint32Value); in debugString() 65 (void)c2Value.get((c2_cntr32_t*)&uint32Value); in debugString() 69 (void)c2Value.get(&int64Value); in debugString() 73 (void)c2Value.get(&uint64Value); in debugString() 78 (void)c2Value.get((c2_cntr64_t*)&uint64Value); in debugString() 82 (void)c2Value.get(&floatValue); in debugString() [all …]
|
D | CCodecConfig.cpp | 120 C2Type c2Value; in withC2Mappers() local 121 if (v.get(&sdkValue) && C2Mapper::map(sdkValue, &c2Value)) { in withC2Mappers() 122 return c2Value; in withC2Mappers() 128 C2Type c2Value; in withC2Mappers() local 130 if (v.get((C2ValueType*)&c2Value) && C2Mapper::map(c2Value, &sdkValue)) { in withC2Mappers() 1194 C2Value c2Value; in getFormatForDomain() local 1198 if (it->second.find(&c2Value)) { in getFormatForDomain() 1199 item = cm.mapToMessage(c2Value); in getFormatForDomain() 1228 C2Value c2Value; in getFormatForDomain() local 1232 if (value.find(&c2Value)) { in getFormatForDomain() [all …]
|
/frameworks/av/media/codec2/sfplugin/utils/ |
D | Codec2Mapper.h | 80 int32_t frameworkValue, uint32_t *c2Value); 82 uint32_t c2Value, int32_t *frameworkValue);
|
D | Codec2Mapper.cpp | 955 int32_t frameworkValue, uint32_t *c2Value) { in mapPixelFormatFrameworkToCodec() argument 958 *c2Value = HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED; in mapPixelFormatFrameworkToCodec() 961 *c2Value = HAL_PIXEL_FORMAT_YCBCR_420_888; in mapPixelFormatFrameworkToCodec() 967 *c2Value = HAL_PIXEL_FORMAT_YV12; in mapPixelFormatFrameworkToCodec() 977 uint32_t c2Value, int32_t *frameworkValue) { in mapPixelFormatCodecToFramework() argument 978 switch (c2Value) { in mapPixelFormatCodecToFramework()
|
/frameworks/av/media/codec2/sfplugin/tests/ |
D | ReflectedParamUpdater_test.cpp | 178 C2Value c2Value; in TEST_F() local 183 EXPECT_EQ(true, msg["int.value"].find(&c2Value)); in TEST_F() 184 EXPECT_EQ(true, c2Value.get(&int32Value)); in TEST_F() 188 EXPECT_EQ(true, msg["vendor.long.value"].find(&c2Value)); in TEST_F() 189 EXPECT_EQ(true, c2Value.get(&int64Value)); in TEST_F()
|