From 32b48bc6e837bef14cc092f002a975ec55bc20a1 Mon Sep 17 00:00:00 2001 From: philippe44 Date: Tue, 28 Mar 2023 11:57:45 -0700 Subject: [PATCH] fix flac for good --- components/codecs/CMakeLists.txt | 2 +- components/codecs/inc/FLAC/all.h | 2 +- components/codecs/inc/FLAC/{flac_assert.h => assert.h} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename components/codecs/inc/FLAC/{flac_assert.h => assert.h} (100%) diff --git a/components/codecs/CMakeLists.txt b/components/codecs/CMakeLists.txt index 85438ca9..b7d0b148 100644 --- a/components/codecs/CMakeLists.txt +++ b/components/codecs/CMakeLists.txt @@ -1,5 +1,5 @@ idf_component_register( - INCLUDE_DIRS . ./inc inc/alac inc/FLAC inc/helix-aac inc/mad inc/ogg inc/opus inc/opusfile inc/resample16 inc/soxr inc/vorbis + INCLUDE_DIRS . ./inc inc/alac inc/helix-aac inc/mad inc/resample16 inc/soxr inc/vorbis inc/opus inc/opusfile ) if (DEFINED AAC_DISABLE_SBR) diff --git a/components/codecs/inc/FLAC/all.h b/components/codecs/inc/FLAC/all.h index 7b33ada3..a6a012fc 100644 --- a/components/codecs/inc/FLAC/all.h +++ b/components/codecs/inc/FLAC/all.h @@ -35,7 +35,7 @@ #include "export.h" -#include "flac_assert.h" +#include "assert.h" #include "callback.h" #include "format.h" #include "metadata.h" diff --git a/components/codecs/inc/FLAC/flac_assert.h b/components/codecs/inc/FLAC/assert.h similarity index 100% rename from components/codecs/inc/FLAC/flac_assert.h rename to components/codecs/inc/FLAC/assert.h