X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=cl_video_libavw.c;h=10e4756246aaa7387388081bd1463dbda59a6859;hb=7fd05e792c54a2be48c322eb6718c52d209605c5;hp=422af8a9bd2a3f663700eeb1637d0c78438097cd;hpb=d1c3f1065fde02ed39b7eecc2d9b9a637388d091;p=xonotic%2Fdarkplaces.git diff --git a/cl_video_libavw.c b/cl_video_libavw.c index 422af8a9..10e47562 100644 --- a/cl_video_libavw.c +++ b/cl_video_libavw.c @@ -22,7 +22,11 @@ */ // LadyHavoc: for some reason this is being #include'd rather than treated as its own file... -// LadyHavoc: adapted to not require stdint.h as this is not available on MSVC++, using unsigned char instead of uint8_t and fs_offset_t instead of int64_t. + +#include "quakedef.h" +#include "client.h" +#include "cl_video.h" +#include "cl_video_libavw.h" // scaler type #define LIBAVW_SCALER_BILINEAR 0 @@ -45,9 +49,9 @@ #define LIBAVW_PRINT_PANIC 4 // exported callback functions: typedef void avwCallbackPrint(int, const char *); -typedef int avwCallbackIoRead(void *, unsigned char *, int); -typedef fs_offset_t avwCallbackIoSeek(void *, fs_offset_t, int); -typedef fs_offset_t avwCallbackIoSeekSize(void *); +typedef int avwCallbackIoRead(void *, uint8_t *, int); +typedef uint64_t avwCallbackIoSeek(void *, uint64_t, int); +typedef uint64_t avwCallbackIoSeekSize(void *); // exported functions: int (*qLibAvW_Init)(avwCallbackPrint *printfunction); // init library, returns error code const char *(*qLibAvW_ErrorString)(int errorcode); // get string for error code @@ -85,12 +89,11 @@ static dllfunction_t libavwfuncs[] = const char* dllnames_libavw[] = { #if defined(WIN32) - "libavw.dll", + "libavcodec.dll", #elif defined(MACOSX) - "libavw.dylib", + "libavcodec.dylib", #else - "libavw.so.1", - "libavw.so", + "libavcodec.so", #endif NULL }; @@ -114,9 +117,9 @@ typedef struct libavwstream_s } libavwstream_t; -cvar_t cl_video_libavw_minwidth = {CVAR_SAVE, "cl_video_libavw_minwidth", "0", "if videos width is lesser than minimal, thay will be upscaled"}; -cvar_t cl_video_libavw_minheight = {CVAR_SAVE, "cl_video_libavw_minheight", "0", "if videos height is lesser than minimal, thay will be upscaled"}; -cvar_t cl_video_libavw_scaler = {CVAR_SAVE, "cl_video_libavw_scaler", "1", "selects a scaler for libavcode played videos. Scalers are: 0 - bilinear, 1 - bicubic, 2 - x, 3 - point, 4 - area, 5 - bicublin, 6 - gauss, 7 - sinc, 8 - lanczos, 9 - spline."}; +cvar_t cl_video_libavw_minwidth = {CF_ARCHIVE, "cl_video_libavw_minwidth", "0", "if videos width is lesser than minimal, thay will be upscaled"}; +cvar_t cl_video_libavw_minheight = {CF_ARCHIVE, "cl_video_libavw_minheight", "0", "if videos height is lesser than minimal, thay will be upscaled"}; +cvar_t cl_video_libavw_scaler = {CF_ARCHIVE, "cl_video_libavw_scaler", "1", "selects a scaler for libavcode played videos. Scalers are: 0 - bilinear, 1 - bicubic, 2 - x, 3 - point, 4 - area, 5 - bicublin, 6 - gauss, 7 - sinc, 8 - lanczos, 9 - spline."}; // video extensions const char* libavw_extensions[] = @@ -232,21 +235,21 @@ void libavw_close(void *stream) } // IO wrapper -static int LibAvW_FS_Read(void *opaque, unsigned char *buf, int buf_size) +static int LibAvW_FS_Read(void *opaque, uint8_t *buf, int buf_size) { return FS_Read((qfile_t *)opaque, buf, buf_size); } -static fs_offset_t LibAvW_FS_Seek(void *opaque, fs_offset_t pos, int whence) +static uint64_t LibAvW_FS_Seek(void *opaque, uint64_t pos, int whence) { - return (fs_offset_t)FS_Seek((qfile_t *)opaque, pos, whence); + return (uint64_t)FS_Seek((qfile_t *)opaque, pos, whence); } -static fs_offset_t LibAvW_FS_SeekSize(void *opaque) +static uint64_t LibAvW_FS_SeekSize(void *opaque) { - return (fs_offset_t)FS_FileSize((qfile_t *)opaque); + return (uint64_t)FS_FileSize((qfile_t *)opaque); } // open as DP video stream -static void *LibAvW_OpenVideo(clvideo_t *video, char *filename, const char **errorstring) +void *LibAvW_OpenVideo(clvideo_t *video, char *filename, const char **errorstring) { libavwstream_t *s; char filebase[MAX_OSPATH], check[MAX_OSPATH]; @@ -352,12 +355,12 @@ static void libavw_message(int level, const char *message) Con_Printf(CON_ERROR "LibAvcodec panic: %s\n", message); } -static qboolean LibAvW_OpenLibrary(void) +qbool LibAvW_OpenLibrary(void) { int errorcode; // COMMANDLINEOPTION: Video: -nolibavw disables libavcodec wrapper support - if (COM_CheckParm("-nolibavw")) + if (Sys_CheckParm("-nolibavw")) return false; // load DLL's @@ -379,8 +382,7 @@ static qboolean LibAvW_OpenLibrary(void) return true; } -static void LibAvW_CloseLibrary(void) +void LibAvW_CloseLibrary(void) { Sys_UnloadLibrary(&libavw_dll); } -