summaryrefslogtreecommitdiff
path: root/devel/electron5/files/patch-ui_gfx_codec_jpeg__codec.cc
diff options
context:
space:
mode:
Diffstat (limited to 'devel/electron5/files/patch-ui_gfx_codec_jpeg__codec.cc')
-rw-r--r--devel/electron5/files/patch-ui_gfx_codec_jpeg__codec.cc20
1 files changed, 0 insertions, 20 deletions
diff --git a/devel/electron5/files/patch-ui_gfx_codec_jpeg__codec.cc b/devel/electron5/files/patch-ui_gfx_codec_jpeg__codec.cc
deleted file mode 100644
index 59e02aa35a05..000000000000
--- a/devel/electron5/files/patch-ui_gfx_codec_jpeg__codec.cc
+++ /dev/null
@@ -1,20 +0,0 @@
---- ui/gfx/codec/jpeg_codec.cc.orig 2019-04-08 08:19:17 UTC
-+++ ui/gfx/codec/jpeg_codec.cc
-@@ -207,6 +207,7 @@ bool JPEGCodec::Decode(const unsigned char* input, siz
- case JCS_GRAYSCALE:
- case JCS_RGB:
- case JCS_YCbCr:
-+#ifdef JCS_EXTENSIONS
- // Choose an output colorspace and return if it is an unsupported one.
- // Same as JPEGCodec::Encode(), libjpeg-turbo supports all input formats
- // used by Chromium (i.e. RGBA and BGRA) and we just map the input
-@@ -223,6 +224,9 @@ bool JPEGCodec::Decode(const unsigned char* input, siz
- NOTREACHED() << "Invalid pixel format";
- return false;
- }
-+#else
-+ cinfo.out_color_space = JCS_RGB;
-+#endif
- break;
- case JCS_CMYK:
- case JCS_YCCK: