mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
Add MACE 6:1 decompression to fix some missing audio samples, parallelize deflate compression
This commit is contained in:
11
gpr2gpa/macedec.h
Normal file
11
gpr2gpa/macedec.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
struct MaceChannelDecState
|
||||
{
|
||||
int16_t index, factor, prev2, previous, level;
|
||||
};
|
||||
|
||||
void DecodeMACE3(MaceChannelDecState *chd, uint8_t pkt, uint8_t *output);
|
||||
void DecodeMACE6(MaceChannelDecState *chd, uint8_t pkt, uint8_t *output);
|
Reference in New Issue
Block a user