Files
Aaru.Compression.Native/flac.h

20 lines
404 B
C
Raw Normal View History

2021-10-20 00:44:34 +01:00
//
// Created by claunia on 20/10/21.
//
#ifndef AARU_COMPRESSION_NATIVE__FLAC_H_
#define AARU_COMPRESSION_NATIVE__FLAC_H_
typedef struct
{
2024-04-30 15:37:29 +01:00
const uint8_t *src_buffer;
2021-10-20 00:44:34 +01:00
size_t src_len;
size_t src_pos;
2024-04-30 15:37:29 +01:00
uint8_t *dst_buffer;
2021-10-20 00:44:34 +01:00
size_t dst_len;
size_t dst_pos;
uint8_t error;
} aaru_flac_ctx;
2024-04-30 15:37:29 +01:00
#endif // AARU_COMPRESSION_NATIVE__FLAC_H_