[FFmpeg-cvslog] avcodec/codec_internal: remove unnecessary avcodec.h include

James Almer git at videolan.org
Thu Feb 20 00:52:52 EET 2025


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Tue Feb 18 12:39:56 2025 -0300| [7e84865cff2d174beede69a2018c0d81c8cc3b02] | committer: James Almer

avcodec/codec_internal: remove unnecessary avcodec.h include

Signed-off-by: James Almer <jamrial at gmail.com>

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

 libavcodec/allcodecs.c      | 1 +
 libavcodec/codec_internal.h | 6 +++---
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c
index 4e1b1c9b45..3be33f5cc4 100644
--- a/libavcodec/allcodecs.c
+++ b/libavcodec/allcodecs.c
@@ -29,6 +29,7 @@
 
 #include "config.h"
 #include "libavutil/thread.h"
+#include "avcodec.h"
 #include "codec.h"
 #include "codec_id.h"
 #include "codec_internal.h"
diff --git a/libavcodec/codec_internal.h b/libavcodec/codec_internal.h
index 5b2db74590..473d72fdbb 100644
--- a/libavcodec/codec_internal.h
+++ b/libavcodec/codec_internal.h
@@ -22,7 +22,6 @@
 #include <stdint.h>
 
 #include "libavutil/attributes.h"
-#include "avcodec.h"
 #include "codec.h"
 #include "config.h"
 
@@ -102,6 +101,7 @@ typedef struct FFCodecDefault {
 struct AVCodecContext;
 struct AVSubtitle;
 struct AVPacket;
+enum AVCodecConfig;
 
 enum FFCodecType {
     /* The codec is a decoder using the decode callback;
@@ -268,7 +268,7 @@ typedef struct FFCodec {
      * ff_default_get_supported_config() will be used. `out_num_configs` will
      * always be set to a valid pointer.
      */
-    int (*get_supported_config)(const AVCodecContext *avctx,
+    int (*get_supported_config)(const struct AVCodecContext *avctx,
                                 const AVCodec *codec,
                                 enum AVCodecConfig config,
                                 unsigned flags,
@@ -283,7 +283,7 @@ typedef struct FFCodec {
  * For AVCODEC_CONFIG_COLOR_RANGE, the output will depend on the bitmask in
  * FFCodec.color_ranges, with a value of 0 returning NULL.
  */
-int ff_default_get_supported_config(const AVCodecContext *avctx,
+int ff_default_get_supported_config(const struct AVCodecContext *avctx,
                                     const AVCodec *codec,
                                     enum AVCodecConfig config,
                                     unsigned flags,



More information about the ffmpeg-cvslog mailing list