mirror of
https://github.com/aaru-dps/Aaru.Compression.Native.git
synced 2025-12-16 19:24:31 +00:00
20 lines
404 B
C
20 lines
404 B
C
//
|
|
// Created by claunia on 20/10/21.
|
|
//
|
|
|
|
#ifndef AARU_COMPRESSION_NATIVE__FLAC_H_
|
|
#define AARU_COMPRESSION_NATIVE__FLAC_H_
|
|
|
|
typedef struct
|
|
{
|
|
const uint8_t *src_buffer;
|
|
size_t src_len;
|
|
size_t src_pos;
|
|
uint8_t *dst_buffer;
|
|
size_t dst_len;
|
|
size_t dst_pos;
|
|
uint8_t error;
|
|
} aaru_flac_ctx;
|
|
|
|
#endif // AARU_COMPRESSION_NATIVE__FLAC_H_
|