X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=jpeg.c;h=70eb3e472d1478c5ff7736447e84e488ef99e767;hb=HEAD;hp=effab6a1051dba3ee62f222eabbf1dca99cd5df4;hpb=5225f7ec9697b2a65a524956d6ee95c267d88145;p=xonotic%2Fdarkplaces.git diff --git a/jpeg.c b/jpeg.c index effab6a1..70eb3e47 100644 --- a/jpeg.c +++ b/jpeg.c @@ -22,13 +22,14 @@ */ -#include "quakedef.h" +#include "darkplaces.h" +#include "cl_screen.h" #include "image.h" #include "jpeg.h" #include "image_png.h" -cvar_t sv_writepicture_quality = {CVAR_SERVER | CVAR_SAVE, "sv_writepicture_quality", "10", "WritePicture quality offset (higher means better quality, but slower)"}; -cvar_t r_texture_jpeg_fastpicmip = {CVAR_CLIENT | CVAR_SAVE, "r_texture_jpeg_fastpicmip", "1", "perform gl_picmip during decompression for JPEG files (faster)"}; +extern cvar_t sv_writepicture_quality; +cvar_t r_texture_jpeg_fastpicmip = {CF_CLIENT | CF_ARCHIVE, "r_texture_jpeg_fastpicmip", "1", "perform gl_picmip during decompression for JPEG files (faster)"}; // jboolean is unsigned char instead of int on Win32 #ifdef WIN32 @@ -168,9 +169,9 @@ typedef struct { /* The decompressor output side may not use these variables. */ int dc_tbl_no; /* DC entropy table selector (0..3) */ int ac_tbl_no; /* AC entropy table selector (0..3) */ - + /* Remaining fields should be treated as private by applications. */ - + /* These values are computed during compression or decompression startup: */ /* Component's size in DCT blocks. * Any dummy blocks added to complete an MCU are not counted; therefore @@ -454,12 +455,12 @@ static dllfunction_t jpegfuncs[] = // Handle for JPEG DLL dllhandle_t jpeg_dll = NULL; -qboolean jpeg_tried_loading = 0; +qbool jpeg_tried_loading = 0; #endif static unsigned char jpeg_eoi_marker [2] = {0xFF, JPEG_EOI}; static jmp_buf error_in_jpeg; -static qboolean jpeg_toolarge; +static qbool jpeg_toolarge; // Our own output manager for JPEG compression typedef struct @@ -488,7 +489,7 @@ JPEG_OpenLibrary Try to load the JPEG DLL ==================== */ -qboolean JPEG_OpenLibrary (void) +qbool JPEG_OpenLibrary (void) { #ifdef LINK_TO_LIBJPEG return true; @@ -522,7 +523,7 @@ qboolean JPEG_OpenLibrary (void) #endif // Load the DLL - return Sys_LoadLibrary (dllnames, &jpeg_dll, jpegfuncs); + return Sys_LoadDependency (dllnames, &jpeg_dll, jpegfuncs); #endif } @@ -537,7 +538,7 @@ Unload the JPEG DLL void JPEG_CloseLibrary (void) { #ifndef LINK_TO_LIBJPEG - Sys_UnloadLibrary (&jpeg_dll); + Sys_FreeLibrary (&jpeg_dll); jpeg_tried_loading = false; // allow retry #endif } @@ -814,7 +815,7 @@ JPEG_SaveImage_preflipped Save a preflipped JPEG image to a file ==================== */ -qboolean JPEG_SaveImage_preflipped (const char *filename, int width, int height, unsigned char *data) +qbool JPEG_SaveImage_preflipped (const char *filename, int width, int height, unsigned char *data) { struct jpeg_compress_struct cinfo; struct jpeg_error_mgr jerr; @@ -898,7 +899,7 @@ static size_t JPEG_try_SaveImage_to_Buffer (struct jpeg_compress_struct *cinfo, cinfo->in_color_space = JCS_RGB; cinfo->input_components = 3; qjpeg_set_defaults (cinfo); - qjpeg_set_quality (cinfo, quality, FALSE); + qjpeg_set_quality (cinfo, quality, false); cinfo->comp_info[0].h_samp_factor = 2; cinfo->comp_info[0].v_samp_factor = 2; @@ -1016,9 +1017,9 @@ static void CompressedImageCache_Add(const char *imagename, size_t maxsize, void if(strlen(imagename) >= MAX_QPATH) return; // can't add this - + i = (CompressedImageCacheItem*) Z_Malloc(sizeof(CompressedImageCacheItem)); - strlcpy(i->imagename, imagename, sizeof(i->imagename)); + dp_strlcpy(i->imagename, imagename, sizeof(i->imagename)); i->maxsize = maxsize; i->compressed = compressed; i->compressed_size = compressed_size; @@ -1043,7 +1044,7 @@ static CompressedImageCacheItem *CompressedImageCache_Find(const char *imagename return NULL; } -qboolean Image_Compress(const char *imagename, size_t maxsize, void **buf, size_t *size) +qbool Image_Compress(const char *imagename, size_t maxsize, void **buf, size_t *size) { unsigned char *imagedata, *newimagedata; int maxPixelCount;