Move source files to categorizing subfolders.

This commit is contained in:
2025-08-02 16:52:12 +01:00
parent 01fbaa0016
commit 9a5a994702
7 changed files with 14 additions and 14 deletions

View File

@@ -95,10 +95,10 @@ endif()
add_library(aaruformat SHARED include/aaruformat/consts.h include/aaruformat/enums.h include/aaru.h include/aaruformat.h
include/aaruformat/decls.h include/aaruformat/structs.h src/identify.c src/open.c include/aaruformat/context.h
src/close.c include/aaruformat/errors.h src/read.c include/aaruformat/crc64.h src/cst.c src/ecc_cd.c src/helpers.c
src/simd.c include/aaruformat/simd.h src/crc64/crc64.c src/crc64/crc64_clmul.c src/crc64/crc64_vmull.c
src/crc64/arm_vmull.c src/crc64/arm_vmull.h src/spamsum.c include/aaruformat/spamsum.h include/aaruformat/flac.h
src/flac.c src/lzma.c src/lru.c include/aaruformat/lru.h include/aaruformat/endian.h src/verify.c
src/close.c include/aaruformat/errors.h src/read.c include/aaruformat/crc64.h src/compression/cst.c src/checksum/ecc_cd.c src/helpers.c
src/checksum/simd.c include/aaruformat/simd.h src/crc64/crc64.c src/crc64/crc64_clmul.c src/crc64/crc64_vmull.c
src/crc64/arm_vmull.c src/crc64/arm_vmull.h src/checksum/spamsum.c include/aaruformat/spamsum.h include/aaruformat/flac.h
src/compression/flac.c src/compression/lzma.c src/lru.c include/aaruformat/lru.h include/aaruformat/endian.h src/verify.c
include/aaruformat/structs/header.h
include/aaruformat/structs/ddt.h
include/aaruformat/structs/index.h

View File

@@ -22,7 +22,7 @@
#include <stdlib.h>
#include <string.h>
#include <aaruformat.h>
#include "aaruformat.h"
void *aaruf_ecc_cd_init()
{

View File

@@ -19,7 +19,7 @@
#include <stddef.h>
#include <stdint.h>
#include <aaruformat.h>
#include "aaruformat.h"
#if defined(__x86_64__) || defined(__amd64) || defined(_M_AMD64) || defined(_M_X64) || defined(__I386__) || \
defined(__i386__) || defined(__THW_INTEL) || defined(_M_IX86)

View File

@@ -25,7 +25,7 @@
#include <stdlib.h>
#include <string.h>
#include <aaruformat.h>
#include "aaruformat.h"
#include "spamsum.h"

View File

@@ -20,7 +20,7 @@
#include <stdlib.h>
#include <string.h>
#include <aaruformat.h>
#include "aaruformat.h"
int32_t aaruf_cst_transform(const uint8_t *interleaved, uint8_t *sequential, size_t length)
{

View File

@@ -20,12 +20,12 @@
#include <stdlib.h>
#include <string.h>
#include <aaruformat.h>
#include "aaruformat.h"
#include "../3rdparty/flac/include/FLAC/metadata.h"
#include "../3rdparty/flac/include/FLAC/stream_decoder.h"
#include "../3rdparty/flac/include/FLAC/stream_encoder.h"
#include "flac.h"
#include "FLAC/metadata.h"
#include "FLAC/stream_decoder.h"
#include "FLAC/stream_encoder.h"
static FLAC__StreamDecoderReadStatus read_callback(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[],
size_t *bytes, void *client_data);

View File

@@ -19,9 +19,9 @@
#include <stddef.h>
#include <stdint.h>
#include <aaruformat.h>
#include "aaruformat.h"
#include "../3rdparty/lzma-21.03beta/C/LzmaLib.h"
#include "../../3rdparty/lzma-21.03beta/C/LzmaLib.h"
AARU_EXPORT int32_t AARU_CALL aaruf_lzma_decode_buffer(uint8_t *dst_buffer, size_t *dst_size, const uint8_t *src_buffer,
size_t *srcLen, const uint8_t *props, size_t propsSize)