Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-03-16 20:18:28 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-03-21 03:33:09 +0300
commita688f3c13ce55c2ba51dbbb344564649f1bb52fe (patch)
tree0b84647dc0b0f986ae9c89eda6e15836debd956b /libavcodec/ac3enc_float.c
parent5b3732227ed3179c6c07a07eca3242ac82c21011 (diff)
avcodec/internal: Move FF_CODEC_CAP_* to a new header codec_internal.h
Also move FF_CODEC_TAGS_END as well as struct AVCodecDefault. This reduces the amount of files that have to include internal.h (which comes with quite a lot of indirect inclusions), as e.g. most encoders don't need it. It is furthemore in preparation for moving the private part of AVCodec out of the public codec.h. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/ac3enc_float.c')
-rw-r--r--libavcodec/ac3enc_float.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3enc_float.c b/libavcodec/ac3enc_float.c
index 0e605cdf2c..1c13920175 100644
--- a/libavcodec/ac3enc_float.c
+++ b/libavcodec/ac3enc_float.c
@@ -27,9 +27,9 @@
*/
#define AC3ENC_FLOAT 1
-#include "internal.h"
#include "audiodsp.h"
#include "ac3enc.h"
+#include "codec_internal.h"
#include "eac3enc.h"
#include "kbdwin.h"