This commit is contained in:
commit
47aee91ef4
396 changed files with 32003 additions and 0 deletions
23
tools/vlc/include/VLC_BIT.H
Normal file
23
tools/vlc/include/VLC_BIT.H
Normal 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
BIN
tools/vlc/lib/VLC_BIT.O
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue