diff options
author | Niklas Haas <git@haasn.dev> | 2024-04-05 20:06:45 +0200 |
---|---|---|
committer | Niklas Haas <git@haasn.dev> | 2024-09-08 13:59:29 +0200 |
commit | 4524d527bf7215252abdaae9e09af7a252a5dcd8 (patch) | |
tree | bc079f5489e4f196ccedece97cd83bc4bf2c3df7 | |
parent | 2c2dfd914902d0b41b4bd30d4b19ae08af1d7bc1 (diff) | |
download | ffmpeg-4524d527bf7215252abdaae9e09af7a252a5dcd8.tar.gz |
avcodec/codec_internal: nuke init_static_data()
All hail get_supported_config()
-rw-r--r-- | libavcodec/allcodecs.c | 7 | ||||
-rw-r--r-- | libavcodec/codec_internal.h | 8 |
2 files changed, 1 insertions, 14 deletions
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c index 0d61b665af..d773ac36c2 100644 --- a/libavcodec/allcodecs.c +++ b/libavcodec/allcodecs.c @@ -915,13 +915,8 @@ static void av_codec_init_static(void) { int dummy; for (int i = 0; codec_list[i]; i++) { - const FFCodec *codec = codec_list[i]; - if (codec->init_static_data) { - codec->init_static_data((FFCodec*) codec); - continue; - } - /* Backward compatibility with deprecated public fields */ + const FFCodec *codec = codec_list[i]; if (!codec->get_supported_config) continue; diff --git a/libavcodec/codec_internal.h b/libavcodec/codec_internal.h index 5863760564..5b2db74590 100644 --- a/libavcodec/codec_internal.h +++ b/libavcodec/codec_internal.h @@ -173,14 +173,6 @@ typedef struct FFCodec { */ const FFCodecDefault *defaults; - /** - * Initialize codec static data, called from av_codec_iterate(). - * - * This is not intended for time consuming operations as it is - * run for every codec regardless of that codec being used. - */ - void (*init_static_data)(struct FFCodec *codec); - int (*init)(struct AVCodecContext *); union { |