From a8b404b3400c3ebd8e0b923dcaefcc49ea563e36 Mon Sep 17 00:00:00 2001 From: "U-Lameguy64-LT\\Lameguy64" Date: Fri, 1 Apr 2022 14:39:04 +0800 Subject: Fixed up psxmdec prototype to use psxpress --- indev/psxmdec/vlc.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'indev/psxmdec/vlc.c') diff --git a/indev/psxmdec/vlc.c b/indev/psxmdec/vlc.c index bc64a12..064cfb3 100644 --- a/indev/psxmdec/vlc.c +++ b/indev/psxmdec/vlc.c @@ -1,3 +1,12 @@ +/* This file is a trimmed version of + * https://cgit.grumpycoder.net/cgit/PSX-Bundle/tree/psxdev/vlc.c + * that only includes the VLC decompression routine. It cannot be + * included as part of the PSn00bSDK Run-time libraries due to license + * incompatibilities but is included here largely for prototyping and + * reference purposes as a better optimized implementation is preferred + * to support full-motion-video playback. + * + */ #include typedef unsigned short Uint16; @@ -7,7 +16,7 @@ typedef struct { unsigned int code,nbits; } huff_t; -#include "table.h" +//#include "table.h" #define CODE1(a,b,c) (((a)<<10)|((b)&0x3ff)|((c)<<16)) /* run, level, bit */ -- cgit v1.2.3