3262b1
# HG changeset patch
3262b1
# User msirringhaus@suse.de
3262b1
# Date 1582805876 -3600
3262b1
#      Thu Feb 27 13:17:56 2020 +0100
3262b1
# Node ID cc3d09abea31068e57f1ab918782f9f86fc6a158
3262b1
# Parent  9cd90914846f667f18babc491a74c164ae5d6e9f
3262b1
imported patch decoder_workaround.patch
3262b1
3262b1
diff -r 9cd90914846f image/decoders/nsGIFDecoder2.cpp
3262b1
--- a/image/decoders/nsGIFDecoder2.cpp	Thu Feb 27 12:57:14 2020 +0100
3262b1
+++ b/image/decoders/nsGIFDecoder2.cpp	Fri Mar 27 13:06:18 2020 +0100
3262b1
@@ -422,6 +422,9 @@
3262b1
   MOZ_ASSERT(mSwizzleFn);
3262b1
   uint8_t* data = reinterpret_cast<uint8_t*>(aColormap);
3262b1
   mSwizzleFn(data, data, aColors);
3262b1
+#if MOZ_BIG_ENDIAN()
3262b1
+  SwizzleRow(SurfaceFormat::A8R8G8B8, SurfaceFormat::B8G8R8A8)(data, data, aColors);
3262b1
+#endif
3262b1
 }
3262b1
 
3262b1
 LexerResult nsGIFDecoder2::DoDecode(SourceBufferIterator& aIterator,
3262b1
diff -r 9cd90914846f image/decoders/nsJPEGDecoder.cpp
3262b1
--- a/image/decoders/nsJPEGDecoder.cpp	Thu Feb 27 12:57:14 2020 +0100
3262b1
+++ b/image/decoders/nsJPEGDecoder.cpp	Fri Mar 27 13:06:18 2020 +0100
3262b1
@@ -263,6 +263,9 @@
3262b1
         case JCS_YCbCr:
3262b1
           // By default, we will output directly to BGRA. If we need to apply
3262b1
           // special color transforms, this may change.
3262b1
+#if MOZ_BIG_ENDIAN()
3262b1
+          mInfo.out_color_space = MOZ_JCS_EXT_NATIVE_ENDIAN_XRGB;
3262b1
+#else
3262b1
           switch (SurfaceFormat::OS_RGBX) {
3262b1
             case SurfaceFormat::B8G8R8X8:
3262b1
               mInfo.out_color_space = JCS_EXT_BGRX;
3262b1
@@ -277,6 +280,7 @@
3262b1
               mState = JPEG_ERROR;
3262b1
               return Transition::TerminateFailure();
3262b1
           }
3262b1
+#endif
3262b1
           break;
3262b1
         case JCS_CMYK:
3262b1
         case JCS_YCCK:
3262b1
diff -r 9cd90914846f image/decoders/nsPNGDecoder.cpp
3262b1
--- a/image/decoders/nsPNGDecoder.cpp	Thu Feb 27 12:57:14 2020 +0100
3262b1
+++ b/image/decoders/nsPNGDecoder.cpp	Fri Mar 27 13:06:18 2020 +0100
3262b1
@@ -361,7 +361,7 @@
3262b1
                                    IResumable* aOnResume) {
3262b1
   MOZ_ASSERT(!HasError(), "Shouldn't call DoDecode after error!");
3262b1
 
3262b1
-  return mLexer.Lex(aIterator, aOnResume,
3262b1
+  LexerResult res = mLexer.Lex(aIterator, aOnResume,
3262b1
                     [=](State aState, const char* aData, size_t aLength) {
3262b1
                       switch (aState) {
3262b1
                         case State::PNG_DATA:
3262b1
@@ -371,6 +371,14 @@
3262b1
                       }
3262b1
                       MOZ_CRASH("Unknown State");
3262b1
                     });
3262b1
+
3262b1
+#if MOZ_BIG_ENDIAN()
3262b1
+  if(res.is<TerminalState>() && res.as<TerminalState>() == TerminalState::SUCCESS) {
3262b1
+      NativeEndian::swapToLittleEndianInPlace<uint32_t>((uint32_t*)(mImageData), mImageDataLength / 4);
3262b1
+  }
3262b1
+#endif
3262b1
+
3262b1
+  return res;
3262b1
 }
3262b1
 
3262b1
 LexerTransition<nsPNGDecoder::State> nsPNGDecoder::ReadPNGData(
3262b1
diff -r 9cd90914846f image/decoders/nsWebPDecoder.cpp
3262b1
--- a/image/decoders/nsWebPDecoder.cpp	Thu Feb 27 12:57:14 2020 +0100
3262b1
+++ b/image/decoders/nsWebPDecoder.cpp	Fri Mar 27 13:06:18 2020 +0100
3262b1
@@ -237,7 +237,12 @@
3262b1
   // WebP doesn't guarantee that the alpha generated matches the hint in the
3262b1
   // header, so we always need to claim the input is BGRA. If the output is
3262b1
   // BGRX, swizzling will mask off the alpha channel.
3262b1
+#if MOZ_BIG_ENDIAN()
3262b1
+  mBuffer.colorspace = MODE_ARGB;
3262b1
+  SurfaceFormat inFormat = mFormat;
3262b1
+#else
3262b1
   SurfaceFormat inFormat = SurfaceFormat::OS_RGBA;
3262b1
+#endif
3262b1
 
3262b1
   SurfacePipeFlags pipeFlags = SurfacePipeFlags();
3262b1
   if (mFormat == SurfaceFormat::OS_RGBA &&
3262b1