From a688f3c13ce55c2ba51dbbb344564649f1bb52fe Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Wed, 16 Mar 2022 18:18:28 +0100 Subject: 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 --- libavcodec/movtextenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/movtextenc.c') diff --git a/libavcodec/movtextenc.c b/libavcodec/movtextenc.c index 221cd76fea..57dca6e464 100644 --- a/libavcodec/movtextenc.c +++ b/libavcodec/movtextenc.c @@ -29,7 +29,7 @@ #include "ass_split.h" #include "ass.h" #include "bytestream.h" -#include "internal.h" +#include "codec_internal.h" #define STYLE_FLAG_BOLD (1<<0) #define STYLE_FLAG_ITALIC (1<<1) -- cgit v1.2.3