Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 479774
Collapse All | Expand All

(-)file_not_specified_in_diff (-3 / +3 lines)
Line  Link Here
0
-- src/Fl_JPEG_Image.cxx.orig      2014-08-19 10:51:25.209660893 -0400
0
++ src/Fl_JPEG_Image.cxx   2014-08-19 10:51:58.706328776 -0400
Lines 155-161 Link Here
155
  
155
  
156
  jpeg_create_decompress(&dinfo);
156
  jpeg_create_decompress(&dinfo);
157
  jpeg_stdio_src(&dinfo, fp);
157
  jpeg_stdio_src(&dinfo, fp);
158
  jpeg_read_header(&dinfo, 1);
158
  jpeg_read_header(&dinfo, TRUE);
159
  
159
  
160
  dinfo.quantize_colors      = (boolean)FALSE;
160
  dinfo.quantize_colors      = (boolean)FALSE;
161
  dinfo.out_color_space      = JCS_RGB;
161
  dinfo.out_color_space      = JCS_RGB;
Lines 337-343 Link Here
337
  
337
  
338
  jpeg_create_decompress(&dinfo);
338
  jpeg_create_decompress(&dinfo);
339
  jpeg_mem_src(&dinfo, data);
339
  jpeg_mem_src(&dinfo, data);
340
  jpeg_read_header(&dinfo, 1);
340
  jpeg_read_header(&dinfo, TRUE);
341
  
341
  
342
  dinfo.quantize_colors      = (boolean)FALSE;
342
  dinfo.quantize_colors      = (boolean)FALSE;
343
  dinfo.out_color_space      = JCS_RGB;
343
  dinfo.out_color_space      = JCS_RGB;

Return to bug 479774