- Automatically generate debuginfo subpackage - Added -static subpackageepel9
parent
62882e325f
commit
fe87125459
@ -0,0 +1,62 @@
|
||||
--- libtiff/tif_jpeg.c.orig 2009-08-20 14:27:50.688881034 +0200
|
||||
+++ libtiff/tif_jpeg.c 2009-08-20 14:29:03.814866414 +0200
|
||||
@@ -288,20 +288,20 @@
|
||||
}
|
||||
|
||||
static int
|
||||
-TIFFjpeg_set_quality(JPEGState* sp, int quality, boolean force_baseline)
|
||||
+TIFFjpeg_set_quality(JPEGState* sp, int quality, jpeg_boolean force_baseline)
|
||||
{
|
||||
return CALLVJPEG(sp,
|
||||
jpeg_set_quality(&sp->cinfo.c, quality, force_baseline));
|
||||
}
|
||||
|
||||
static int
|
||||
-TIFFjpeg_suppress_tables(JPEGState* sp, boolean suppress)
|
||||
+TIFFjpeg_suppress_tables(JPEGState* sp, jpeg_boolean suppress)
|
||||
{
|
||||
return CALLVJPEG(sp, jpeg_suppress_tables(&sp->cinfo.c, suppress));
|
||||
}
|
||||
|
||||
static int
|
||||
-TIFFjpeg_start_compress(JPEGState* sp, boolean write_all_tables)
|
||||
+TIFFjpeg_start_compress(JPEGState* sp, jpeg_boolean write_all_tables)
|
||||
{
|
||||
return CALLVJPEG(sp,
|
||||
jpeg_start_compress(&sp->cinfo.c, write_all_tables));
|
||||
@@ -334,7 +334,7 @@
|
||||
}
|
||||
|
||||
static int
|
||||
-TIFFjpeg_read_header(JPEGState* sp, boolean require_image)
|
||||
+TIFFjpeg_read_header(JPEGState* sp, jpeg_boolean require_image)
|
||||
{
|
||||
return CALLJPEG(sp, -1, jpeg_read_header(&sp->cinfo.d, require_image));
|
||||
}
|
||||
@@ -402,7 +402,7 @@
|
||||
sp->dest.free_in_buffer = (size_t) tif->tif_rawdatasize;
|
||||
}
|
||||
|
||||
-static boolean
|
||||
+static jpeg_boolean
|
||||
std_empty_output_buffer(j_compress_ptr cinfo)
|
||||
{
|
||||
JPEGState* sp = (JPEGState*) cinfo;
|
||||
@@ -453,7 +453,7 @@
|
||||
sp->dest.free_in_buffer = (size_t) sp->jpegtables_length;
|
||||
}
|
||||
|
||||
-static boolean
|
||||
+static jpeg_boolean
|
||||
tables_empty_output_buffer(j_compress_ptr cinfo)
|
||||
{
|
||||
JPEGState* sp = (JPEGState*) cinfo;
|
||||
@@ -519,7 +519,7 @@
|
||||
sp->src.bytes_in_buffer = (size_t) tif->tif_rawcc;
|
||||
}
|
||||
|
||||
-static boolean
|
||||
+static jpeg_boolean
|
||||
std_fill_input_buffer(j_decompress_ptr cinfo)
|
||||
{
|
||||
JPEGState* sp = (JPEGState* ) cinfo;
|
Loading…
Reference in new issue