SNES: more more more work

This commit is contained in:
tildearrow 2022-09-25 02:00:46 -05:00
parent ffa0181704
commit 023bdf2f9a
3 changed files with 6 additions and 6 deletions

View file

@ -32,7 +32,7 @@ extern "C" {
* @param buf input data.
* @param out output buffer. shall be at least 9*(len/16) shorts in size.
* @param len input length (should be a multiple of 16. if it isn't, the output will be padded).
* @param loopStart beginning of loop area (may be 0 for no loop). this is used to ensure the respective block has no filter in order to loop properly.
* @param loopStart beginning of loop area (may be -1 for no loop). this is used to ensure the respective block has no filter in order to loop properly.
* @return number of written samples.
*/
long brrEncode(short* buf, unsigned char* out, long len, long loopStart);