12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- diff -Naur orig/ui/gfx/codec/jpeg_codec.cc patched/ui/gfx/codec/jpeg_codec.cc
- --- orig/ui/gfx/codec/jpeg_codec.cc 2016-04-24 21:31:31.000000000 +0200
- +++ patched/ui/gfx/codec/jpeg_codec.cc 2016-06-13 23:43:36.809948082 +0200
- @@ -120,7 +120,7 @@
- // tell libjpeg where to write the next data
- cinfo->dest->next_output_byte = &(*state->out)[state->image_buffer_used];
- cinfo->dest->free_in_buffer = state->out->size() - state->image_buffer_used;
- - return 1;
- + return TRUE;
- }
- // Cleans up the JpegEncoderState to prepare for returning in the final form.
- @@ -266,7 +266,7 @@
- cinfo.data_precision = 8;
- jpeg_set_defaults(&cinfo);
- - jpeg_set_quality(&cinfo, quality, 1); // quality here is 0-100
- + jpeg_set_quality(&cinfo, quality, TRUE); // quality here is 0-100
- // set up the destination manager
- jpeg_destination_mgr destmgr;
- @@ -278,7 +278,7 @@
- JpegEncoderState state(output);
- cinfo.client_data = &state;
- - jpeg_start_compress(&cinfo, 1);
- + jpeg_start_compress(&cinfo, TRUE);
- // feed it the rows, doing necessary conversions for the color format
- #ifdef JCS_EXTENSIONS
- @@ -364,7 +364,7 @@
- // set to a positive value if TRUE is returned. A FALSE return should only
- // be used when I/O suspension is desired."
- boolean FillInputBuffer(j_decompress_ptr cinfo) {
- - return false;
- + return FALSE;
- }
- // Skip data in the buffer. Since we have all the data at once, this operation
- @@ -496,7 +496,7 @@
- cinfo.client_data = &state;
- // fill the file metadata into our buffer
- - if (jpeg_read_header(&cinfo, true) != JPEG_HEADER_OK)
- + if (jpeg_read_header(&cinfo, TRUE) != JPEG_HEADER_OK)
- return false;
- // we want to always get RGB data out
|