This commit is contained in:
Daveo 2000-08-29 16:26:01 +00:00
commit 47aee91ef4
396 changed files with 32003 additions and 0 deletions

View file

@ -0,0 +1,23 @@
/*
Improved VLC coding functions
NOTE: This VLC decode function requires the GTE, so InitGeom must be called prior to use
Also this function uses a table held in scratchpad ram ( taking approx 512 bytes )
*/
#ifdef __cplusplus
extern "C" {
#endif
// Setup function, this builds the bit decode table in scratchpad ram
void DecDCTvlcBuild3();
// Break size function, set 0 for no partial decode
int DecDCTvlcSize3( int breaksize );
// VLC decode function, returns 0 if successful, 1 if partially complete
int DecDCTvlc3( unsigned long *bs, unsigned long *buf );
#ifdef __cplusplus
}
#endif

BIN
tools/vlc/lib/VLC_BIT.O Normal file

Binary file not shown.