Searched refs:uPlane (Results 1 – 3 of 3) sorted by relevance
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/src/ |
H A D | jpeg_encoder.cpp | 283 auto uPlane = std::make_unique<uint8_t[]>((width >> SHIFT_MASK) * UV_SAMPLE_ROW); in Yuv420spEncoder() local 284 if (uPlane == nullptr) { in Yuv420spEncoder() 294 Deinterweave(uvPlane, uPlane.get(), vPlane.get(), encodeInfo_.next_scanline, width, height); in Yuv420spEncoder() 299 u[i >> SHIFT_MASK] = uPlane.get() + offset; in Yuv420spEncoder() 309 void JpegEncoder::Deinterweave(uint8_t *uvPlane, uint8_t *uPlane, uint8_t *vPlane, uint32_t curRow,… in Deinterweave() argument 329 uPlane[index] = uv[indexZero]; in Deinterweave()
|
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/include/ |
H A D | jpeg_encoder.h | 41 …void Deinterweave(uint8_t *uvPlane, uint8_t *uPlane, uint8_t *vPlane, uint32_t curRow, uint32_t wi…
|
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/plugin_test/ |
H A D | plugin_libjpeg_test.cpp | 2216 uint8_t *uPlane = nullptr; variable 2221 Jpegencoder->Deinterweave(uvPlane, uPlane, vPlane, curRow, width, height);
|