1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
|
/*
* Simd Library (http://ermig1979.github.io/Simd).
*
* Copyright (c) 2011-2022 Yermalayeu Ihar.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include "Simd/SimdMemory.h"
#include "Simd/SimdImageSave.h"
#include "Simd/SimdImageSaveJpeg.h"
#include "Simd/SimdLoad.h"
#include "Simd/SimdAvx2.h"
namespace Simd
{
#ifdef SIMD_AVX2_ENABLE
namespace Avx2
{
const uint32_t JpegZigZagTi32[64] = {
0, 8, 1, 2, 9, 16, 24, 17,
10, 3, 4, 11, 18, 25, 32, 40,
33, 26, 19, 12, 5, 6, 13, 20,
27, 34, 41, 48, 56, 49, 42, 35,
28, 21, 14, 7, 15, 22, 29, 36,
43, 50, 57, 58, 51, 44, 37, 30,
23, 31, 38, 45, 52, 59, 60, 53,
46, 39, 47, 54, 61, 62, 55, 63 };
//---------------------------------------------------------------------
static int JpegProcessDu(Base::BitBuf& bitBuf, float* CDU, int stride, const float* fdtbl, int DC, const uint16_t HTDC[256][2], const uint16_t HTAC[256][2])
{
SIMD_ALIGNED(32) int DUO[64], DU[64];
JpegDct(CDU, stride, fdtbl, DUO);
union
{
uint64_t u64[1];
uint32_t u32[2];
uint8_t u8[8];
} dum;
for (int i = 0, j = 0; i < 64; i += 8, j++)
{
__m256i du = _mm256_i32gather_epi32(DUO, _mm256_loadu_si256((__m256i*)(JpegZigZagTi32 + i)), 4);
dum.u8[j] = ~_mm256_movemask_ps(_mm256_castsi256_ps(_mm256_cmpeq_epi32(du, Avx2::K_ZERO)));
_mm256_storeu_si256((__m256i*)(DU + i), du);
}
int diff = DU[0] - DC;
if (diff == 0)
bitBuf.Push(HTDC[0]);
else
{
uint16_t bits[2];
Base::JpegCalcBits(diff, bits);
bitBuf.Push(HTDC[bits[1]]);
bitBuf.Push(bits);
}
#if defined(SIMD_X64_ENABLE)
if (dum.u64[0] == 0)
{
bitBuf.Push(HTAC[0x00]);
return DU[0];
}
dum.u64[0] >>= 1;
int i = 1;
for (; dum.u64[0]; ++i, dum.u64[0] >>= 1)
{
int nrzeroes = (int)_tzcnt_u64(dum.u64[0]);
i += nrzeroes;
dum.u64[0] >>= nrzeroes;
if (nrzeroes >= 16)
{
for (int nrmarker = 16; nrmarker <= nrzeroes; nrmarker += 16)
bitBuf.Push(HTAC[0xF0]);
nrzeroes &= 15;
}
uint16_t bits[2];
Base::JpegCalcBits(DU[i], bits);
bitBuf.Push(HTAC[(nrzeroes << 4) + bits[1]]);
bitBuf.Push(bits);
}
if (i < 64)
bitBuf.Push(HTAC[0x00]);
#else
int end0pos = 64;
do
{
end0pos -= 8;
int mask = ~_mm256_movemask_epi8(_mm256_cmpeq_epi32(_mm256_loadu_si256((__m256i*)(DU + end0pos)), Avx2::K_ZERO));
if (mask)
{
end0pos += 7 - _lzcnt_u32(mask) / 4;
break;
}
}
while (end0pos > 0);
if (end0pos == 0)
{
bitBuf.Push(HTAC[0x00]);
return DU[0];
}
for (int i = 1; i <= end0pos; ++i)
{
int startpos = i;
for (; DU[i] == 0 && i <= end0pos; ++i);
int nrzeroes = i - startpos;
if (nrzeroes >= 16)
{
int lng = nrzeroes >> 4;
int nrmarker;
for (nrmarker = 1; nrmarker <= lng; ++nrmarker)
bitBuf.Push(HTAC[0xF0]);
nrzeroes &= 15;
}
uint16_t bits[2];
Base::JpegCalcBits(DU[i], bits);
bitBuf.Push(HTAC[(nrzeroes << 4) + bits[1]]);
bitBuf.Push(bits);
}
if (end0pos != 63)
bitBuf.Push(HTAC[0x00]);
#endif
return DU[0];
}
SIMD_INLINE void RgbToYuvInit(__m256 k[10])
{
k[0] = _mm256_set1_ps(+0.29900f);
k[1] = _mm256_set1_ps(+0.58700f);
k[2] = _mm256_set1_ps(+0.11400f);
k[3] = _mm256_set1_ps(-128.000f);
k[4] = _mm256_set1_ps(-0.16874f);
k[5] = _mm256_set1_ps(-0.33126f);
k[6] = _mm256_set1_ps(+0.50000f);
k[7] = _mm256_set1_ps(+0.50000f);
k[8] = _mm256_set1_ps(-0.41869f);
k[9] = _mm256_set1_ps(-0.08131f);
}
SIMD_INLINE void RgbToYuv(const uint8_t* r, const uint8_t* g, const uint8_t* b, int stride, int height,
const __m256 k[10], float* y, float* u, float* v, int size)
{
for (int row = 0; row < size;)
{
for (int col = 0; col < size; col += 8)
{
__m256 _r = _mm256_cvtepi32_ps(_mm256_cvtepu8_epi32(_mm_loadl_epi64((__m128i*)(r + col))));
__m256 _g = _mm256_cvtepi32_ps(_mm256_cvtepu8_epi32(_mm_loadl_epi64((__m128i*)(g + col))));
__m256 _b = _mm256_cvtepi32_ps(_mm256_cvtepu8_epi32(_mm_loadl_epi64((__m128i*)(b + col))));
_mm256_storeu_ps(y + col, _mm256_add_ps(_mm256_add_ps(_mm256_add_ps(_mm256_mul_ps(_r, k[0]), _mm256_mul_ps(_g, k[1])), _mm256_mul_ps(_b, k[2])), k[3]));
//_mm256_storeu_ps(y + col, _mm256_add_ps(_mm256_add_ps(_mm256_mul_ps(_r, _yr), _mm256_mul_ps(_g, _yg)), _mm256_add_ps(_mm256_mul_ps(_b, _yb), _yt)));
_mm256_storeu_ps(u + col, _mm256_add_ps(_mm256_add_ps(_mm256_mul_ps(_r, k[4]), _mm256_mul_ps(_g, k[5])), _mm256_mul_ps(_b, k[6])));
_mm256_storeu_ps(v + col, _mm256_add_ps(_mm256_add_ps(_mm256_mul_ps(_r, k[7]), _mm256_mul_ps(_g, k[8])), _mm256_mul_ps(_b, k[9])));
}
if(++row < height)
r += stride, g += stride, b += stride;
y += size, u += size, v += size;
}
}
SIMD_INLINE void GrayToY(const uint8_t* g, int stride, int height, float* y, int size)
{
__m256 k = _mm256_set1_ps(-128.000f);
for (int row = 0; row < size;)
{
for (int col = 0; col < size; col += 8)
{
__m256 _g = _mm256_cvtepi32_ps(_mm256_cvtepu8_epi32(_mm_loadl_epi64((__m128i*)(g + col))));
_mm256_storeu_ps(y + col, _mm256_add_ps(_g, k));
}
if (++row < height)
g += stride;
y += size;
}
}
SIMD_INLINE void SubUv(const float * src, float * dst)
{
__m256 _0_25 = _mm256_set1_ps(0.25f), s0, s1;
for (int yy = 0; yy < 8; yy += 1)
{
s0 = _mm256_add_ps(_mm256_loadu_ps(src + 0), _mm256_loadu_ps(src + 16));
s1 = _mm256_add_ps(_mm256_loadu_ps(src + 8), _mm256_loadu_ps(src + 24));
_mm256_storeu_ps(dst + 0, _mm256_mul_ps(PermutedHorizontalAdd(s0, s1), _0_25));
src += 32;
dst += 8;
}
}
void JpegWriteBlockSubs(OutputMemoryStream& stream, int width, int height, const uint8_t* red,
const uint8_t* green, const uint8_t* blue, int stride, const float* fY, const float* fUv, int dc[3])
{
bool gray = red == green && red == blue;
__m256 k[10];
if(!gray)
RgbToYuvInit(k);
int& DCY = dc[0], & DCU = dc[1], & DCV = dc[2];
int width16 = width & (~15);
Base::BitBuf bitBuf;
for (int y = 0; y < height; y += 16)
{
int x = 0;
SIMD_ALIGNED(32) float Y[256], U[256], V[256];
SIMD_ALIGNED(32) float subU[64], subV[64];
for (; x < width16; x += 16)
{
if (gray)
GrayToY(red + x, stride, height - y, Y, 16);
else
RgbToYuv(red + x, green + x, blue + x, stride, height - y, k, Y, U, V, 16);
DCY = JpegProcessDu(bitBuf, Y + 0, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
DCY = JpegProcessDu(bitBuf, Y + 8, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
DCY = JpegProcessDu(bitBuf, Y + 128, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
DCY = JpegProcessDu(bitBuf, Y + 136, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
if (gray)
Base::JpegProcessDuGrayUv(bitBuf);
else
{
SubUv(U, subU);
SubUv(V, subV);
DCU = JpegProcessDu(bitBuf, subU, 8, fUv, DCU, Base::HuffmanUVdc, Base::HuffmanUVac);
DCV = JpegProcessDu(bitBuf, subV, 8, fUv, DCV, Base::HuffmanUVdc, Base::HuffmanUVac);
}
if (bitBuf.Full())
{
Base::WriteBits(stream, bitBuf.data, bitBuf.size);
bitBuf.Clear();
}
}
for (; x < width; x += 16)
{
if (gray)
Base::GrayToY(red + x, stride, height - y, width - x, Y, 16);
else
Base::RgbToYuv(red + x, green + x, blue + x, stride, height - y, width - x, Y, U, V, 16);
DCY = JpegProcessDu(bitBuf, Y + 0, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
DCY = JpegProcessDu(bitBuf, Y + 8, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
DCY = JpegProcessDu(bitBuf, Y + 128, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
DCY = JpegProcessDu(bitBuf, Y + 136, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
if (gray)
Base::JpegProcessDuGrayUv(bitBuf);
else
{
SubUv(U, subU);
SubUv(V, subV);
DCU = JpegProcessDu(bitBuf, subU, 8, fUv, DCU, Base::HuffmanUVdc, Base::HuffmanUVac);
DCV = JpegProcessDu(bitBuf, subV, 8, fUv, DCV, Base::HuffmanUVdc, Base::HuffmanUVac);
}
}
}
Base::WriteBits(stream, bitBuf.data, bitBuf.size);
bitBuf.Clear();
}
void JpegWriteBlockFull(OutputMemoryStream& stream, int width, int height, const uint8_t* red,
const uint8_t* green, const uint8_t* blue, int stride, const float* fY, const float* fUv, int dc[3])
{
bool gray = red == green && red == blue;
__m256 k[10];
if(!gray)
RgbToYuvInit(k);
int& DCY = dc[0], & DCU = dc[1], & DCV = dc[2];
int width8 = width & (~7);
Base::BitBuf bitBuf;
for (int y = 0; y < height; y += 8)
{
int x = 0;
SIMD_ALIGNED(32) float Y[64], U[64], V[64];
for (; x < width8; x += 8)
{
if (gray)
GrayToY(red + x, stride, height - y, Y, 8);
else
RgbToYuv(red + x, green + x, blue + x, stride, height - y, k, Y, U, V, 8);
DCY = JpegProcessDu(bitBuf, Y, 8, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
if (gray)
Base::JpegProcessDuGrayUv(bitBuf);
else
{
DCU = JpegProcessDu(bitBuf, U, 8, fUv, DCU, Base::HuffmanUVdc, Base::HuffmanUVac);
DCV = JpegProcessDu(bitBuf, V, 8, fUv, DCV, Base::HuffmanUVdc, Base::HuffmanUVac);
}
if (bitBuf.Full())
{
Base::WriteBits(stream, bitBuf.data, bitBuf.size);
bitBuf.Clear();
}
}
for (; x < width; x += 8)
{
if (gray)
Base::GrayToY(red + x, stride, height - y, width - x, Y, 8);
else
Base::RgbToYuv(red + x, green + x, blue + x, stride, height - y, width - x, Y, U, V, 8);
DCY = JpegProcessDu(bitBuf, Y, 8, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
if (gray)
Base::JpegProcessDuGrayUv(bitBuf);
else
{
DCU = JpegProcessDu(bitBuf, U, 8, fUv, DCU, Base::HuffmanUVdc, Base::HuffmanUVac);
DCV = JpegProcessDu(bitBuf, V, 8, fUv, DCV, Base::HuffmanUVdc, Base::HuffmanUVac);
}
}
Base::WriteBits(stream, bitBuf.data, bitBuf.size);
bitBuf.Clear();
}
}
void JpegWriteBlockNv12(OutputMemoryStream& stream, int width, int height, const uint8_t* ySrc, int yStride,
const uint8_t* uvSrc, int uvStride, const float* fY, const float* fUv, int dc[3])
{
int& DCY = dc[0], & DCU = dc[1], & DCV = dc[2];
int width16 = width & (~15);
SIMD_ALIGNED(32) float Y[256], U[64], V[64];
bool gray = (uvSrc == NULL);
Base::BitBuf bitBuf;
for (int y = 0; y < height; y += 16)
{
int x = 0;
for (; x < width16; x += 16)
{
GrayToY(ySrc + x, yStride, height - y, Y, 16);
DCY = JpegProcessDu(bitBuf, Y + 0, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
DCY = JpegProcessDu(bitBuf, Y + 8, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
DCY = JpegProcessDu(bitBuf, Y + 128, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
DCY = JpegProcessDu(bitBuf, Y + 136, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
if (gray)
Base::JpegProcessDuGrayUv(bitBuf);
else
{
Nv12ToUv(uvSrc + x, uvStride, Base::UvSize(height - y), U, V);
DCU = JpegProcessDu(bitBuf, U, 8, fUv, DCU, Base::HuffmanUVdc, Base::HuffmanUVac);
DCV = JpegProcessDu(bitBuf, V, 8, fUv, DCV, Base::HuffmanUVdc, Base::HuffmanUVac);
}
if (bitBuf.Full())
{
Base::WriteBits(stream, bitBuf.data, bitBuf.size);
bitBuf.Clear();
}
}
for (; x < width; x += 16)
{
Base::GrayToY(ySrc + x, yStride, height - y, width - x, Y, 16);
DCY = JpegProcessDu(bitBuf, Y + 0, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
DCY = JpegProcessDu(bitBuf, Y + 8, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
DCY = JpegProcessDu(bitBuf, Y + 128, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
DCY = JpegProcessDu(bitBuf, Y + 136, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
if (gray)
Base::JpegProcessDuGrayUv(bitBuf);
else
{
Base::Nv12ToUv(uvSrc + x, uvStride, Base::UvSize(height - y), Base::UvSize(width - x), U, V);
DCU = JpegProcessDu(bitBuf, U, 8, fUv, DCU, Base::HuffmanUVdc, Base::HuffmanUVac);
DCV = JpegProcessDu(bitBuf, V, 8, fUv, DCV, Base::HuffmanUVdc, Base::HuffmanUVac);
}
}
}
Base::WriteBits(stream, bitBuf.data, bitBuf.size);
bitBuf.Clear();
}
void JpegWriteBlockYuv420p(OutputMemoryStream& stream, int width, int height, const uint8_t* ySrc, int yStride,
const uint8_t* uSrc, int uStride, const uint8_t* vSrc, int vStride, const float* fY, const float* fUv, int dc[3])
{
int& DCY = dc[0], & DCU = dc[1], & DCV = dc[2];
int width16 = width & (~15);
SIMD_ALIGNED(32) float Y[256], U[64], V[64];
bool gray = (uSrc == NULL || vSrc == NULL);
Base::BitBuf bitBuf;
for (int y = 0; y < height; y += 16)
{
int x = 0;
for (; x < width16; x += 16)
{
GrayToY(ySrc + x, yStride, height - y, Y, 16);
DCY = JpegProcessDu(bitBuf, Y + 0, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
DCY = JpegProcessDu(bitBuf, Y + 8, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
DCY = JpegProcessDu(bitBuf, Y + 128, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
DCY = JpegProcessDu(bitBuf, Y + 136, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
if (gray)
Base::JpegProcessDuGrayUv(bitBuf);
else
{
GrayToY(uSrc + Base::UvSize(x), uStride, Base::UvSize(height - y), U, 8);
GrayToY(vSrc + Base::UvSize(x), vStride, Base::UvSize(height - y), V, 8);
DCU = JpegProcessDu(bitBuf, U, 8, fUv, DCU, Base::HuffmanUVdc, Base::HuffmanUVac);
DCV = JpegProcessDu(bitBuf, V, 8, fUv, DCV, Base::HuffmanUVdc, Base::HuffmanUVac);
}
if (bitBuf.Full())
{
Base::WriteBits(stream, bitBuf.data, bitBuf.size);
bitBuf.Clear();
}
}
for (; x < width; x += 16)
{
Base::GrayToY(ySrc + x, yStride, height - y, width - x, Y, 16);
DCY = JpegProcessDu(bitBuf, Y + 0, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
DCY = JpegProcessDu(bitBuf, Y + 8, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
DCY = JpegProcessDu(bitBuf, Y + 128, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
DCY = JpegProcessDu(bitBuf, Y + 136, 16, fY, DCY, Base::HuffmanYdc, Base::HuffmanYac);
if (gray)
Base::JpegProcessDuGrayUv(bitBuf);
else
{
Base::GrayToY(uSrc + Base::UvSize(x), uStride, Base::UvSize(height - y), Base::UvSize(width - x), U, 8);
Base::GrayToY(vSrc + Base::UvSize(x), vStride, Base::UvSize(height - y), Base::UvSize(width - x), V, 8);
DCU = JpegProcessDu(bitBuf, U, 8, fUv, DCU, Base::HuffmanUVdc, Base::HuffmanUVac);
DCV = JpegProcessDu(bitBuf, V, 8, fUv, DCV, Base::HuffmanUVdc, Base::HuffmanUVac);
}
}
}
Base::WriteBits(stream, bitBuf.data, bitBuf.size);
bitBuf.Clear();
}
//---------------------------------------------------------------------
ImageJpegSaver::ImageJpegSaver(const ImageSaverParam& param)
: Sse41::ImageJpegSaver(param)
{
}
void ImageJpegSaver::Init()
{
Sse41::ImageJpegSaver::Init();
if (_param.yuvType == SimdYuvUnknown)
{
if (_param.width >= 32)
{
switch (_param.format)
{
case SimdPixelFormatBgr24:
case SimdPixelFormatRgb24:
_deintBgr = Avx2::DeinterleaveBgr;
break;
case SimdPixelFormatBgra32:
case SimdPixelFormatRgba32:
_deintBgra = Avx2::DeinterleaveBgra;
break;
default:
break;
}
}
_writeBlock = _subSample ? JpegWriteBlockSubs : JpegWriteBlockFull;
}
else
{
_writeNv12Block = JpegWriteBlockNv12;
_writeYuv420pBlock = JpegWriteBlockYuv420p;
}
}
//---------------------------------------------------------------------
uint8_t* Nv12SaveAsJpegToMemory(const uint8_t* y, size_t yStride, const uint8_t* uv, size_t uvStride, size_t width, size_t height, SimdYuvType yuvType, int quality, size_t* size)
{
ImageSaverParam param(width, height, quality, yuvType);
if (param.Validate())
{
Holder<ImageJpegSaver> saver(new ImageJpegSaver(param));
if (saver)
{
if (saver->ToStream(y, yStride, uv, uvStride))
return saver->Release(size);
}
}
return NULL;
}
uint8_t* Yuv420pSaveAsJpegToMemory(const uint8_t* y, size_t yStride, const uint8_t* u, size_t uStride, const uint8_t* v, size_t vStride, size_t width, size_t height, SimdYuvType yuvType, int quality, size_t* size)
{
ImageSaverParam param(width, height, quality, yuvType);
if (param.Validate())
{
Holder<ImageJpegSaver> saver(new ImageJpegSaver(param));
if (saver)
{
if (saver->ToStream(y, yStride, u, uStride, v, vStride))
return saver->Release(size);
}
}
return NULL;
}
}
#endif// SIMD_AVX2_ENABLE
}
|