summaryrefslogtreecommitdiff
path: root/tools.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2020-11-22 13:32:05 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2020-11-22 13:32:05 +0100
commitad55da4ef95044f68cc337a4b0265b984467cc6f (patch)
tree602742d88e31a253e87740d05bc0226362f0566a /tools.c
parent272231467a680d8f0a2e562f811c71fc9ea1ef1c (diff)
downloadvdr-ad55da4ef95044f68cc337a4b0265b984467cc6f.tar.gz
vdr-ad55da4ef95044f68cc337a4b0265b984467cc6f.tar.bz2
Fixed possible compilation errors with libjpeg
Diffstat (limited to 'tools.c')
-rw-r--r--tools.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools.c b/tools.c
index 67136221..3a3a1143 100644
--- a/tools.c
+++ b/tools.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: tools.c 4.12 2020/06/10 20:52:10 kls Exp $
+ * $Id: tools.c 4.13 2020/11/22 13:32:05 kls Exp $
*/
#include "tools.h"
@@ -1272,15 +1272,15 @@ static boolean JpegCompressEmptyOutputBuffer(j_compress_ptr cinfo)
}
else {
esyslog("ERROR: out of memory");
- return false;
+ return FALSE;
}
if (jcd->mem) {
cinfo->dest->next_output_byte = jcd->mem + Used;
cinfo->dest->free_in_buffer = jcd->size - Used;
- return true;
+ return TRUE;
}
}
- return false;
+ return FALSE;
}
static void JpegCompressTermDestination(j_compress_ptr cinfo)
@@ -1325,8 +1325,8 @@ uchar *RgbToJpeg(uchar *Mem, int Width, int Height, int &Size, int Quality)
cinfo.in_color_space = JCS_RGB;
jpeg_set_defaults(&cinfo);
- jpeg_set_quality(&cinfo, Quality, true);
- jpeg_start_compress(&cinfo, true);
+ jpeg_set_quality(&cinfo, Quality, TRUE);
+ jpeg_start_compress(&cinfo, TRUE);
int rs = Width * 3;
JSAMPROW rp[Height];