[FFmpeg-cvslog] avcodec/ac3dec: fix build when eac3 decoder is disabled

Nicolas Gaullier git at videolan.org
Thu Nov 28 15:30:54 EET 2024


ffmpeg | branch: master | Nicolas Gaullier <nicolas.gaullier at cji.paris> | Sun Oct 27 01:01:23 2024 +0200| [44d32c8a23046d40b6be16b93073197efb082cf0] | committer: Anton Khirnov

avcodec/ac3dec: fix build when eac3 decoder is disabled

Signed-off-by: Nicolas Gaullier <nicolas.gaullier at cji.paris>
Signed-off-by: Anton Khirnov <anton at khirnov.net>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=44d32c8a23046d40b6be16b93073197efb082cf0
---

 libavcodec/ac3dec_fixed.c | 3 +++
 libavcodec/ac3dec_float.c | 2 ++
 2 files changed, 5 insertions(+)

diff --git a/libavcodec/ac3dec_fixed.c b/libavcodec/ac3dec_fixed.c
index c9e5cda69c..e0db9b2260 100644
--- a/libavcodec/ac3dec_fixed.c
+++ b/libavcodec/ac3dec_fixed.c
@@ -47,6 +47,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#include "config_components.h"
 #define USE_FIXED 1
 #include "ac3dec.h"
 #include "codec_internal.h"
@@ -152,7 +153,9 @@ static void ac3_downmix_c_fixed16(int16_t **samples, int16_t **matrix,
     }
 }
 
+#if CONFIG_EAC3_DECODER
 #include "eac3dec.c"
+#endif
 #include "ac3dec.c"
 
 static const AVOption options[] = {
diff --git a/libavcodec/ac3dec_float.c b/libavcodec/ac3dec_float.c
index 550a9017de..d94070bc0c 100644
--- a/libavcodec/ac3dec_float.c
+++ b/libavcodec/ac3dec_float.c
@@ -34,7 +34,9 @@
 #include "ac3dec.h"
 #include "codec_internal.h"
 #include "profiles.h"
+#if CONFIG_EAC3_DECODER
 #include "eac3dec.c"
+#endif
 #include "ac3dec.c"
 
 static const AVOption options[] = {



More information about the ffmpeg-cvslog mailing list