Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/src/
H A Djpeg_encoder.cpp50 constexpr uint8_t UV_SAMPLE_ROW = 8; variable
275 JSAMPROW u[UV_SAMPLE_ROW]; in Yuv420spEncoder()
276 JSAMPROW v[UV_SAMPLE_ROW]; in Yuv420spEncoder()
283 auto uPlane = std::make_unique<uint8_t[]>((width >> SHIFT_MASK) * UV_SAMPLE_ROW); in Yuv420spEncoder()
288 auto vPlane = std::make_unique<uint8_t[]>((width >> SHIFT_MASK) * UV_SAMPLE_ROW); in Yuv420spEncoder()
314 if (rowNum > UV_SAMPLE_ROW) { in Deinterweave()
315 rowNum = UV_SAMPLE_ROW; in Deinterweave()