- #ifndef WAVE_H
- #define WAVE_H
- typedef union {
- unsigned short *pw;
- unsigned char *pb;
- } byte_and_short;
- int libmpq_wave_decompress(unsigned char *out_buf, int out_length, unsigned char *in_buf, int in_length, int channels);
- int libmpq_huff_do_decompress(struct huffman_tree *ht, struct huffman_input_stream *is, unsigned char *out_buf, unsigned int out_length);
- #endif