Searched refs:vPlane (Results 1 - 3 of 3) sorted by relevance
/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/src/ |
H A D | jpeg_encoder.cpp | 288 auto vPlane = std::make_unique<uint8_t[]>((width >> SHIFT_MASK) * UV_SAMPLE_ROW); in Yuv420spEncoder() local 289 if (vPlane == nullptr) { in Yuv420spEncoder() 290 IMAGE_LOGE("allocate vPlane memory failed."); in Yuv420spEncoder() 294 Deinterweave(uvPlane, uPlane.get(), vPlane.get(), encodeInfo_.next_scanline, width, height); in Yuv420spEncoder() 300 v[i >> SHIFT_MASK] = vPlane.get() + offset; in Yuv420spEncoder() 309 void JpegEncoder::Deinterweave(uint8_t *uvPlane, uint8_t *uPlane, uint8_t *vPlane, uint32_t curRow, uint32_t width, in Deinterweave() argument 330 vPlane[index] = uv[indexOne]; in Deinterweave()
|
/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 width,
|
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/plugin_test/ |
H A D | plugin_libjpeg_test.cpp | 2218 uint8_t *vPlane = nullptr;
in HWTEST_F() local 2222 Jpegencoder->Deinterweave(uvPlane, uPlane, vPlane, curRow, width, height);
in HWTEST_F()
|
Completed in 5 milliseconds