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 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530
|
/*
* Copyright (C) 2021 Sony Interactive Entertainment Inc.
* Copyright (C) 2023 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "JPEGXLImageDecoder.h"
#if USE(JPEGXL)
#include "PixelBufferConversion.h"
#if USE(LCMS)
#include "PlatformDisplay.h"
#endif
#if PLATFORM(COCOA)
#include <wtf/darwin/WeakLinking.h>
WTF_WEAK_LINK_FORCE_IMPORT(JxlDecoderCreate);
#endif
namespace WebCore {
static const JxlPixelFormat s_pixelFormat { 4, JXL_TYPE_UINT8, JXL_NATIVE_ENDIAN, 0 };
#if USE(LCMS) || USE(CG)
static constexpr int s_eventsWanted = JXL_DEC_BASIC_INFO | JXL_DEC_FRAME | JXL_DEC_FULL_IMAGE | JXL_DEC_COLOR_ENCODING;
#else
static constexpr int s_eventsWanted = JXL_DEC_BASIC_INFO | JXL_DEC_FRAME | JXL_DEC_FULL_IMAGE;
#endif
RefPtr<ScalableImageDecoder> JPEGXLImageDecoder::create(AlphaOption alphaOption, GammaAndColorProfileOption gammaAndColorProfileOption)
{
#if PLATFORM(COCOA)
if (!&JxlDecoderCreate)
return nullptr;
#endif
return adoptRef(*new JPEGXLImageDecoder(alphaOption, gammaAndColorProfileOption));
}
JPEGXLImageDecoder::JPEGXLImageDecoder(AlphaOption alphaOption, GammaAndColorProfileOption gammaAndColorProfileOption)
: ScalableImageDecoder(alphaOption, gammaAndColorProfileOption)
{
}
JPEGXLImageDecoder::~JPEGXLImageDecoder()
{
clear();
}
void JPEGXLImageDecoder::clear()
{
m_decoder.reset();
#if USE(LCMS) || USE(CG)
clearColorTransform();
#endif
}
size_t JPEGXLImageDecoder::frameCount() const
{
if (!hasAnimation())
return 1;
if (!m_isLastFrameHeaderReceived)
const_cast<JPEGXLImageDecoder*>(this)->updateFrameCount();
return m_frameCount;
}
RepetitionCount JPEGXLImageDecoder::repetitionCount() const
{
if (hasAnimation()) {
if (!m_basicInfo->animation.num_loops) {
// If num_loops is zero, repeat infinitely.
return RepetitionCountInfinite;
}
return m_basicInfo->animation.num_loops;
}
return RepetitionCountNone;
}
ScalableImageDecoderFrame* JPEGXLImageDecoder::frameBufferAtIndex(size_t index)
{
if (ScalableImageDecoder::encodedDataStatus() < EncodedDataStatus::SizeAvailable)
return nullptr;
if (index >= frameCount())
index = frameCount() - 1;
if (m_frameBufferCache.isEmpty())
m_frameBufferCache.grow(1);
auto& frame = m_frameBufferCache[index];
if (!frame.isComplete())
decode(Query::DecodedImage, index, isAllDataReceived());
return &frame;
}
void JPEGXLImageDecoder::clearFrameBufferCache(size_t clearBeforeFrame)
{
if (m_frameBufferCache.isEmpty())
return;
// Unlike the png and gif cases, we can always try to clear frames before "clearBeforeFrame" because
// the dependenciy to the previous frame is handled by libjxl.
const Vector<ScalableImageDecoderFrame>::iterator end(m_frameBufferCache.begin() + clearBeforeFrame);
for (Vector<ScalableImageDecoderFrame>::iterator i(m_frameBufferCache.begin()); i != end; ++i) {
// If the frame is partial, we're still on the way to decode the frame and it's likely
// we continue the decode, so we don't clear the frame.
if (i->isPartial())
continue;
i->clear();
}
}
bool JPEGXLImageDecoder::setFailed()
{
clear();
return ScalableImageDecoder::setFailed();
}
void JPEGXLImageDecoder::tryDecodeSize(bool allDataReceived)
{
if (m_basicInfo)
return;
decode(Query::Size, 0, allDataReceived);
}
bool JPEGXLImageDecoder::hasAlpha() const
{
return m_basicInfo && m_basicInfo->alpha_bits > 0;
}
bool JPEGXLImageDecoder::hasAnimation() const
{
return m_basicInfo && m_basicInfo->have_animation;
}
void JPEGXLImageDecoder::ensureDecoderInitialized()
{
if (failed())
return;
if (m_decoder)
return;
m_decoder = JxlDecoderMake(nullptr);
if (!m_decoder) {
setFailed();
return;
}
if (JxlDecoderSubscribeEvents(m_decoder.get(), s_eventsWanted) != JXL_DEC_SUCCESS) {
setFailed();
return;
}
m_readOffset = 0;
m_currentFrame = 0;
m_lastQuery = Query::Size;
}
bool JPEGXLImageDecoder::shouldRewind(Query query, size_t frameIndex) const
{
if (m_lastQuery == Query::FrameCount) {
// If the current query is not FrameCount, we've completed the previous FrameCount query
// and the decoder has reached the EOF, so we need to rewind the decoder for the new query.
// Otherwise we continue the FrameCount query, so we must not rewind the decoder.
return query != Query::FrameCount;
}
if (m_lastQuery == Query::Size) {
// The decoder is at the stream header and doesn't need rewind.
return false;
}
// At this point we know m_lastQuery is Query::DecodedImage.
if (query != Query::DecodedImage)
return true;
// There's two cases where we don't need to rewind:
// 1. Previous decoding was interrupted with JXL_DEC_NEED_MORE_INPUT
// and trying to continue decoding the same frame.
// 2. Previous decoding was completed (m_currentFrame was incremented) and starting a new frame.
// In both cases frameIndex is equal to m_currentFrame.
return frameIndex != m_currentFrame;
}
void JPEGXLImageDecoder::rewind()
{
JxlDecoderRewind(m_decoder.get());
JxlDecoderSubscribeEvents(m_decoder.get(), s_eventsWanted);
m_readOffset = 0;
m_currentFrame = 0;
}
void JPEGXLImageDecoder::updateFrameCount()
{
if (failed())
return;
decode(Query::FrameCount, 0, isAllDataReceived());
if (m_frameCount != m_frameBufferCache.size())
m_frameBufferCache.resize(m_frameCount);
}
void JPEGXLImageDecoder::decode(Query query, size_t frameIndex, bool allDataReceived)
{
ensureDecoderInitialized();
if (failed())
return;
if (shouldRewind(query, frameIndex)) {
rewind();
// We care about the frameIndex only if the query is Query::DecodedImage.
if (query == Query::DecodedImage && frameIndex) {
JxlDecoderSkipFrames(m_decoder.get(), frameIndex);
m_currentFrame = frameIndex;
}
}
m_lastQuery = query;
m_data->data();
size_t dataSize = m_data->size();
if (JxlDecoderSetInput(m_decoder.get(), m_data->data() + m_readOffset, dataSize - m_readOffset) != JXL_DEC_SUCCESS) {
setFailed();
return;
}
JxlDecoderStatus status = processInput(query);
// We set the status as failed if the decoder reports an error or requires more data while all data has been received.
if (status == JXL_DEC_ERROR || (allDataReceived && status == JXL_DEC_NEED_MORE_INPUT)) {
setFailed();
return;
}
if (query == Query::DecodedImage && status == JXL_DEC_FULL_IMAGE && m_isLastFrameHeaderReceived && m_currentFrame == m_frameCount) {
// We free the decoder and LCMS data when the last frame is decoded.
clear();
return;
}
size_t remainingDataSize = JxlDecoderReleaseInput(m_decoder.get());
m_readOffset = dataSize - remainingDataSize;
}
JxlDecoderStatus JPEGXLImageDecoder::processInput(Query query)
{
while (true) {
auto status = JxlDecoderProcessInput(m_decoder.get());
// Return JXL_DEC_ERROR when we've reached EOF without receiving a frame marked as "is_last".
if (status == JXL_DEC_SUCCESS && !m_isLastFrameHeaderReceived)
return JXL_DEC_ERROR;
// JXL_DEC_ERROR and JXL_DEC_SUCCESS are terminal states. We also exit from the loop if more data is needed.
if (status == JXL_DEC_ERROR || status == JXL_DEC_SUCCESS || status == JXL_DEC_NEED_MORE_INPUT)
return status;
if (status == JXL_DEC_BASIC_INFO) {
if (!m_basicInfo) {
JxlBasicInfo basicInfo;
if (JxlDecoderGetBasicInfo(m_decoder.get(), &basicInfo) != JXL_DEC_SUCCESS)
return JXL_DEC_ERROR;
m_basicInfo = basicInfo;
}
if (query == Query::Size) {
// setSize() must be called only if the query is Query::Size,
// otherwise this would roll back the encoded data status from completed.
setSize(IntSize(m_basicInfo->xsize, m_basicInfo->ysize));
return status;
}
continue;
}
#if USE(LCMS) || USE(CG)
if (status == JXL_DEC_COLOR_ENCODING && !m_ignoreGammaAndColorProfile) {
prepareColorTransform();
continue;
}
#endif
if (status == JXL_DEC_FRAME) {
JxlFrameHeader frameHeader;
if (JxlDecoderGetFrameHeader(m_decoder.get(), &frameHeader) != JXL_DEC_SUCCESS)
return JXL_DEC_ERROR;
m_frameCount = std::max(m_frameCount, m_currentFrame + 1);
if (frameHeader.is_last)
m_isLastFrameHeaderReceived = true;
if (query != Query::DecodedImage) {
if (JxlDecoderSetImageOutCallback(m_decoder.get(), &s_pixelFormat, [](void*, size_t, size_t, size_t, const void*) { }, nullptr) != JXL_DEC_SUCCESS)
return JXL_DEC_ERROR;
continue;
}
if (m_currentFrame >= m_frameBufferCache.size())
m_frameBufferCache.resize(m_frameCount + 1);
auto& buffer = m_frameBufferCache[m_currentFrame];
if (buffer.isInvalid() && buffer.initialize(size(), m_premultiplyAlpha)) {
buffer.setDecodingStatus(DecodingStatus::Partial);
buffer.setHasAlpha(hasAlpha());
if (m_basicInfo && m_basicInfo->have_animation) {
buffer.setDuration(Seconds((double)frameHeader.duration * m_basicInfo->animation.tps_denominator / m_basicInfo->animation.tps_numerator));
buffer.setDisposalMethod(ScalableImageDecoderFrame::DisposalMethod::DoNotDispose);
}
}
if (JxlDecoderSetImageOutCallback(m_decoder.get(), &s_pixelFormat, imageOutCallback, this) != JXL_DEC_SUCCESS)
return JXL_DEC_ERROR;
continue;
}
if (status == JXL_DEC_FULL_IMAGE) {
if (m_currentFrame < m_frameBufferCache.size()) {
auto& buffer = m_frameBufferCache[m_currentFrame];
if (!buffer.isInvalid())
buffer.setDecodingStatus(DecodingStatus::Complete);
}
m_currentFrame++;
if (query == Query::DecodedImage)
return JXL_DEC_FULL_IMAGE;
ASSERT(query == Query::FrameCount);
continue;
}
}
}
void JPEGXLImageDecoder::imageOutCallback(void* that, size_t x, size_t y, size_t numPixels, const void* pixels)
{
#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wthread-safety-analysis"
#endif
static_cast<JPEGXLImageDecoder*>(that)->imageOut(x, y, numPixels, static_cast<const uint8_t*>(pixels));
#if defined(__clang__)
#pragma clang diagnostic pop
#endif
}
void JPEGXLImageDecoder::imageOut(size_t x, size_t y, size_t numPixels, const uint8_t* pixels)
{
if (m_currentFrame >= m_frameBufferCache.size())
return;
auto& buffer = m_frameBufferCache[m_currentFrame];
if (buffer.isInvalid())
return;
uint32_t* row = buffer.backingStore()->pixelAt(x, y);
uint32_t* currentAddress = row;
for (size_t i = 0; i < numPixels; i++) {
uint8_t r = *pixels++;
uint8_t g = *pixels++;
uint8_t b = *pixels++;
uint8_t a = *pixels++;
buffer.backingStore()->setPixel(currentAddress++, r, g, b, a);
}
maybePerformColorSpaceConversion(row, row, numPixels);
}
#if USE(LCMS)
void JPEGXLImageDecoder::clearColorTransform()
{
m_iccTransform.reset();
}
void JPEGXLImageDecoder::prepareColorTransform()
{
if (m_iccTransform)
return;
cmsHPROFILE displayProfile = PlatformDisplay::sharedDisplay().colorProfile();
if (!displayProfile)
return;
auto profile = tryDecodeICCColorProfile();
if (!profile)
return; // TODO(bugs.webkit.org/show_bug.cgi?id=234222): We should try to use encoded color profile if ICC profile is not available.
// TODO(bugs.webkit.org/show_bug.cgi?id=234221): We should handle CMYK color but it may require two extra channels (Alpha and K)
// and libjxl has yet to support it.
if (cmsGetColorSpace(profile.get()) == cmsSigRgbData && cmsGetColorSpace(displayProfile) == cmsSigRgbData)
m_iccTransform = LCMSTransformPtr(cmsCreateTransform(profile.get(), TYPE_BGRA_8, displayProfile, TYPE_BGRA_8, INTENT_RELATIVE_COLORIMETRIC, 0));
}
LCMSProfilePtr JPEGXLImageDecoder::tryDecodeICCColorProfile()
{
size_t profileSize = 0;
#if JPEGXL_NUMERIC_VERSION < JPEGXL_COMPUTE_NUMERIC_VERSION(0, 9, 0)
if (JxlDecoderGetICCProfileSize(m_decoder.get(), &s_pixelFormat, JXL_COLOR_PROFILE_TARGET_DATA, &profileSize) != JXL_DEC_SUCCESS)
return nullptr;
Vector<uint8_t> profileData(profileSize);
if (JxlDecoderGetColorAsICCProfile(m_decoder.get(), &s_pixelFormat, JXL_COLOR_PROFILE_TARGET_DATA, profileData.data(), profileData.size()) != JXL_DEC_SUCCESS)
return nullptr;
#else
if (JxlDecoderGetICCProfileSize(m_decoder.get(), JXL_COLOR_PROFILE_TARGET_DATA, &profileSize) != JXL_DEC_SUCCESS)
return nullptr;
Vector<uint8_t> profileData(profileSize);
if (JxlDecoderGetColorAsICCProfile(m_decoder.get(), JXL_COLOR_PROFILE_TARGET_DATA, profileData.data(), profileData.size()) != JXL_DEC_SUCCESS)
return nullptr;
#endif
return LCMSProfilePtr(cmsOpenProfileFromMem(profileData.data(), profileData.size()));
}
void JPEGXLImageDecoder::maybePerformColorSpaceConversion(void* inputBuffer, void* outputBuffer, unsigned numberOfPixels)
{
if (!m_iccTransform)
return;
cmsDoTransform(m_iccTransform.get(), inputBuffer, outputBuffer, numberOfPixels);
}
#elif USE(CG)
void JPEGXLImageDecoder::clearColorTransform()
{
m_profile = nullptr;
}
void JPEGXLImageDecoder::prepareColorTransform()
{
if (m_profile || !m_basicInfo || m_basicInfo->num_extra_channels > 1 || m_basicInfo->exponent_bits_per_sample || m_basicInfo->alpha_exponent_bits)
return;
m_profile = tryDecodeICCColorProfile();
// TODO(bugs.webkit.org/show_bug.cgi?id=234222): We should try to use encoded color profile if ICC profile is not available.
}
RetainPtr<CGColorSpaceRef> JPEGXLImageDecoder::tryDecodeICCColorProfile()
{
size_t profileSize = 0;
if (JxlDecoderGetICCProfileSize(m_decoder.get(), &s_pixelFormat, JXL_COLOR_PROFILE_TARGET_DATA, &profileSize) != JXL_DEC_SUCCESS)
return nullptr;
auto data = adoptCF(CFDataCreateMutable(kCFAllocatorDefault, profileSize));
CFDataIncreaseLength(data.get(), profileSize);
if (JxlDecoderGetColorAsICCProfile(m_decoder.get(), &s_pixelFormat, JXL_COLOR_PROFILE_TARGET_DATA, CFDataGetMutableBytePtr(data.get()), profileSize) != JXL_DEC_SUCCESS)
return nullptr;
return adoptCF(CGColorSpaceCreateWithICCData(data.get()));
}
void JPEGXLImageDecoder::maybePerformColorSpaceConversion(void* inputBuffer, void* outputBuffer, unsigned numberOfPixels)
{
if (!m_profile)
return;
// https://developer.apple.com/documentation/accelerate/1399134-vimageconvert_anytoany?language=objc
// "The destination buffer may only alias the srcs buffers if vImageConverter_MustOperateOutOfPlace returns 0 and the respective scanlines of the aliasing buffers start at the same address."
// convertImagePixels() doesn't have any logic for this, so we can just pessimize here and assume aliasing is illegal.
std::unique_ptr<uint8_t[]> intermediateBuffer(new uint8_t[4 * numberOfPixels]);
auto alphaFormat = m_premultiplyAlpha ? AlphaPremultiplication::Premultiplied : AlphaPremultiplication::Unpremultiplied;
ConstPixelBufferConversionView source {
.format = {
.alphaFormat = alphaFormat,
.pixelFormat = PixelFormat::BGRA8,
.colorSpace = DestinationColorSpace(m_profile.get()),
},
.bytesPerRow = static_cast<unsigned>(4 * size().width()),
.rows = static_cast<const uint8_t*>(inputBuffer),
};
PixelBufferConversionView destination {
.format = {
.alphaFormat = alphaFormat,
.pixelFormat = PixelFormat::BGRA8,
.colorSpace = DestinationColorSpace::SRGB(),
},
.bytesPerRow = static_cast<unsigned>(4 * size().width()),
.rows = intermediateBuffer.get(),
};
convertImagePixels(source, destination, { static_cast<int>(numberOfPixels), 1 });
memcpy(outputBuffer, intermediateBuffer.get(), numberOfPixels * 4);
}
#else
void JPEGXLImageDecoder::maybePerformColorSpaceConversion(void*, void*, unsigned)
{
}
#endif // USE(LCMS), USE(CG)
}
#endif // USE(JPEGXL)
|