diff --git a/fftools/ffmpeg_mux_init.c b/fftools/ffmpeg_mux_init.c index 5d272f5472762..80109df0aed36 100644 --- a/fftools/ffmpeg_mux_init.c +++ b/fftools/ffmpeg_mux_init.c @@ -2194,7 +2194,6 @@ static int of_parse_group_token(Muxer *mux, const char *token, char *ptr) }; const AVClass class = { .class_name = "StreamGroupType", - .item_name = av_default_item_name, .option = opts, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/fftools/ffmpeg_opt.c b/fftools/ffmpeg_opt.c index cf31106fe15e7..c189cf373bbf9 100644 --- a/fftools/ffmpeg_opt.c +++ b/fftools/ffmpeg_opt.c @@ -332,7 +332,6 @@ static int opt_abort_on(void *optctx, const char *opt, const char *arg) }; static const AVClass class = { .class_name = "", - .item_name = av_default_item_name, .option = opts, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/fftools/ffplay_renderer.c b/fftools/ffplay_renderer.c index 45ca84fa95691..4e9e33b675f9b 100644 --- a/fftools/ffplay_renderer.c +++ b/fftools/ffplay_renderer.c @@ -765,7 +765,6 @@ static void destroy(VkRenderer *renderer) static const AVClass vulkan_renderer_class = { .class_name = "Vulkan Renderer", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/fftools/opt_common.c b/fftools/opt_common.c index 02d7048c42e6d..f5b73c9f2f258 100644 --- a/fftools/opt_common.c +++ b/fftools/opt_common.c @@ -1069,7 +1069,6 @@ int opt_cpucount(void *optctx, const char *opt, const char *arg) }; static const AVClass class = { .class_name = "cpucount", - .item_name = av_default_item_name, .option = opts, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/aacdec_template.c b/libavcodec/aacdec_template.c index 2b3509c85f9bf..9975805573341 100644 --- a/libavcodec/aacdec_template.c +++ b/libavcodec/aacdec_template.c @@ -3447,7 +3447,6 @@ static const AVOption options[] = { static const AVClass aac_decoder_class = { .class_name = "AAC decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c index 83c23cc2de35e..20d42a627b777 100644 --- a/libavcodec/aacenc.c +++ b/libavcodec/aacenc.c @@ -1407,7 +1407,6 @@ static const AVOption aacenc_options[] = { static const AVClass aacenc_class = { .class_name = "AAC encoder", - .item_name = av_default_item_name, .option = aacenc_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/ac3dec_fixed.c b/libavcodec/ac3dec_fixed.c index c9e5cda69cea1..cdab83d647bfb 100644 --- a/libavcodec/ac3dec_fixed.c +++ b/libavcodec/ac3dec_fixed.c @@ -165,7 +165,6 @@ static const AVOption options[] = { static const AVClass ac3_decoder_class = { .class_name = "Fixed-Point AC-3 Decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/ac3dec_float.c b/libavcodec/ac3dec_float.c index 39d3cbd282b03..c49ee2d94d5df 100644 --- a/libavcodec/ac3dec_float.c +++ b/libavcodec/ac3dec_float.c @@ -56,7 +56,6 @@ static const AVOption options[] = { static const AVClass ac3_eac3_decoder_class = { .class_name = "(E-)AC3 decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/ac3enc.c b/libavcodec/ac3enc.c index 56c8d239c556b..df76dda6eebdf 100644 --- a/libavcodec/ac3enc.c +++ b/libavcodec/ac3enc.c @@ -130,7 +130,6 @@ const AVOption ff_ac3_enc_options[] = { const AVClass ff_ac3enc_class = { .class_name = "AC-3 Encoder", - .item_name = av_default_item_name, .option = ff_ac3_enc_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/adpcmenc.c b/libavcodec/adpcmenc.c index 63afffc58f78a..7f18fc2daf986 100644 --- a/libavcodec/adpcmenc.c +++ b/libavcodec/adpcmenc.c @@ -989,7 +989,6 @@ static const AVOption options[] = { static const AVClass adpcm_encoder_class = { .class_name = "ADPCM encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/alac.c b/libavcodec/alac.c index 538d1e5984e4e..18791d426d78d 100644 --- a/libavcodec/alac.c +++ b/libavcodec/alac.c @@ -611,7 +611,6 @@ static const AVOption options[] = { static const AVClass alac_class = { .class_name = "alac", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/alacenc.c b/libavcodec/alacenc.c index 9598e5861e530..c28c2577f4c71 100644 --- a/libavcodec/alacenc.c +++ b/libavcodec/alacenc.c @@ -643,7 +643,6 @@ static const AVOption options[] = { static const AVClass alacenc_class = { .class_name = "alacenc", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/amfenc_av1.c b/libavcodec/amfenc_av1.c index 3f164ccc59b64..949251d4e8935 100644 --- a/libavcodec/amfenc_av1.c +++ b/libavcodec/amfenc_av1.c @@ -465,7 +465,6 @@ static const FFCodecDefault defaults[] = { static const AVClass av1_amf_class = { .class_name = "av1_amf", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/amfenc_h264.c b/libavcodec/amfenc_h264.c index bd544d12df665..a6b82365ad538 100644 --- a/libavcodec/amfenc_h264.c +++ b/libavcodec/amfenc_h264.c @@ -518,7 +518,6 @@ static const FFCodecDefault defaults[] = { static const AVClass h264_amf_class = { .class_name = "h264_amf", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/amfenc_hevc.c b/libavcodec/amfenc_hevc.c index 352564a3016c1..9db01db28dd81 100644 --- a/libavcodec/amfenc_hevc.c +++ b/libavcodec/amfenc_hevc.c @@ -433,7 +433,6 @@ static const FFCodecDefault defaults[] = { }; static const AVClass hevc_amf_class = { .class_name = "hevc_amf", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/apedec.c b/libavcodec/apedec.c index d31c06715201b..988f23d8bbad5 100644 --- a/libavcodec/apedec.c +++ b/libavcodec/apedec.c @@ -1744,7 +1744,6 @@ static const AVOption options[] = { static const AVClass ape_decoder_class = { .class_name = "APE decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/audiotoolboxenc.c b/libavcodec/audiotoolboxenc.c index 42ab7ae6e47a4..ba3867f358b31 100644 --- a/libavcodec/audiotoolboxenc.c +++ b/libavcodec/audiotoolboxenc.c @@ -610,7 +610,6 @@ static const AVOption options[] = { #define FFAT_ENC_CLASS(NAME) \ static const AVClass ffat_##NAME##_enc_class = { \ .class_name = "at_" #NAME "_enc", \ - .item_name = av_default_item_name, \ .option = options, \ .version = LIBAVUTIL_VERSION_INT, \ }; diff --git a/libavcodec/av1_metadata_bsf.c b/libavcodec/av1_metadata_bsf.c index 41b02cc836b14..494245f333d55 100644 --- a/libavcodec/av1_metadata_bsf.c +++ b/libavcodec/av1_metadata_bsf.c @@ -211,7 +211,6 @@ static const AVOption av1_metadata_options[] = { static const AVClass av1_metadata_class = { .class_name = "av1_metadata_bsf", - .item_name = av_default_item_name, .option = av1_metadata_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/av1dec.c b/libavcodec/av1dec.c index 7ffa7821e9a47..da05a0f039e49 100644 --- a/libavcodec/av1dec.c +++ b/libavcodec/av1dec.c @@ -1485,7 +1485,6 @@ static const AVOption av1_options[] = { static const AVClass av1_class = { .class_name = "AV1 decoder", - .item_name = av_default_item_name, .option = av1_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/cbs_av1.c b/libavcodec/cbs_av1.c index 1d9ac5ab4496b..accea49828bea 100644 --- a/libavcodec/cbs_av1.c +++ b/libavcodec/cbs_av1.c @@ -1277,7 +1277,6 @@ static const AVOption cbs_av1_options[] = { static const AVClass cbs_av1_class = { .class_name = "cbs_av1", - .item_name = av_default_item_name, .option = cbs_av1_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/ccaption_dec.c b/libavcodec/ccaption_dec.c index f91c92b37332c..5a69d9216bad5 100644 --- a/libavcodec/ccaption_dec.c +++ b/libavcodec/ccaption_dec.c @@ -934,7 +934,6 @@ static const AVOption options[] = { static const AVClass ccaption_dec_class = { .class_name = "Closed caption Decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/cfhdenc.c b/libavcodec/cfhdenc.c index f447438491d15..75f41e701bcc5 100644 --- a/libavcodec/cfhdenc.c +++ b/libavcodec/cfhdenc.c @@ -849,7 +849,6 @@ static const AVOption options[] = { static const AVClass cfhd_class = { .class_name = "cfhd", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/cinepakenc.c b/libavcodec/cinepakenc.c index f15325ad0d0ad..6bf5485871c99 100644 --- a/libavcodec/cinepakenc.c +++ b/libavcodec/cinepakenc.c @@ -148,7 +148,6 @@ static const AVOption options[] = { static const AVClass cinepak_class = { .class_name = "cinepak", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/cljrenc.c b/libavcodec/cljrenc.c index 31ad5ce0cfe2a..ee03dd3e2eb89 100644 --- a/libavcodec/cljrenc.c +++ b/libavcodec/cljrenc.c @@ -103,7 +103,6 @@ static const AVOption options[] = { static const AVClass cljr_class = { .class_name = "cljr encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/crystalhd.c b/libavcodec/crystalhd.c index 86f6cfa6c15a4..e419d8e3ce8f6 100644 --- a/libavcodec/crystalhd.c +++ b/libavcodec/crystalhd.c @@ -778,7 +778,6 @@ static int crystalhd_receive_frame(AVCodecContext *avctx, AVFrame *frame) #define DEFINE_CRYSTALHD_DECODER(x, X, bsf_name) \ static const AVClass x##_crystalhd_class = { \ .class_name = #x "_crystalhd", \ - .item_name = av_default_item_name, \ .option = options, \ .version = LIBAVUTIL_VERSION_INT, \ }; \ diff --git a/libavcodec/cuviddec.c b/libavcodec/cuviddec.c index da37207cf2816..02022148e0984 100644 --- a/libavcodec/cuviddec.c +++ b/libavcodec/cuviddec.c @@ -1155,7 +1155,6 @@ static const AVCodecHWConfigInternal *const cuvid_hw_configs[] = { #define DEFINE_CUVID_CODEC(x, X, bsf_name) \ static const AVClass x##_cuvid_class = { \ .class_name = #x "_cuvid", \ - .item_name = av_default_item_name, \ .option = options, \ .version = LIBAVUTIL_VERSION_INT, \ }; \ diff --git a/libavcodec/dcadec.c b/libavcodec/dcadec.c index cc23731b90026..cf12124a58183 100644 --- a/libavcodec/dcadec.c +++ b/libavcodec/dcadec.c @@ -410,7 +410,6 @@ static const AVOption dcadec_options[] = { static const AVClass dcadec_class = { .class_name = "DCA decoder", - .item_name = av_default_item_name, .option = dcadec_options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DECODER, diff --git a/libavcodec/dcaenc.c b/libavcodec/dcaenc.c index c731d79381c8d..2b034b5648612 100644 --- a/libavcodec/dcaenc.c +++ b/libavcodec/dcaenc.c @@ -1300,7 +1300,6 @@ static const AVOption options[] = { static const AVClass dcaenc_class = { .class_name = "DCA (DTS Coherent Acoustics)", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/dnxhdenc.c b/libavcodec/dnxhdenc.c index f52a2e9918b75..aa273b5c6009b 100644 --- a/libavcodec/dnxhdenc.c +++ b/libavcodec/dnxhdenc.c @@ -73,7 +73,6 @@ static const AVOption options[] = { static const AVClass dnxhd_class = { .class_name = "dnxhd", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/dolby_e.c b/libavcodec/dolby_e.c index b8dac0fa3f82a..c80cf3ae62776 100644 --- a/libavcodec/dolby_e.c +++ b/libavcodec/dolby_e.c @@ -1300,7 +1300,6 @@ static const AVOption options[] = { static const AVClass dolby_e_decoder_class = { .class_name = "Dolby E decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/dump_extradata_bsf.c b/libavcodec/dump_extradata_bsf.c index 5506d5ed6564d..373fc9dad8ec2 100644 --- a/libavcodec/dump_extradata_bsf.c +++ b/libavcodec/dump_extradata_bsf.c @@ -93,7 +93,6 @@ static const AVOption options[] = { static const AVClass dump_extradata_class = { .class_name = "dump_extradata bsf", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/dv_error_marker_bsf.c b/libavcodec/dv_error_marker_bsf.c index 131c6fcbe646d..19ac936e053d2 100644 --- a/libavcodec/dv_error_marker_bsf.c +++ b/libavcodec/dv_error_marker_bsf.c @@ -123,7 +123,6 @@ static const AVOption options[] = { static const AVClass dv_error_marker_class = { .class_name = "dv_error_marker", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/dvbsubdec.c b/libavcodec/dvbsubdec.c index bcc607d1d7c0f..ad05aa0bf3799 100644 --- a/libavcodec/dvbsubdec.c +++ b/libavcodec/dvbsubdec.c @@ -1564,7 +1564,6 @@ static const AVOption options[] = { }; static const AVClass dvbsubdec_class = { .class_name = "DVB Sub Decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/dvdsubdec.c b/libavcodec/dvdsubdec.c index a5da0d7b08624..11c3cc5e35dbd 100644 --- a/libavcodec/dvdsubdec.c +++ b/libavcodec/dvdsubdec.c @@ -701,7 +701,6 @@ static const AVOption options[] = { }; static const AVClass dvdsub_class = { .class_name = "dvdsubdec", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/dvdsubenc.c b/libavcodec/dvdsubenc.c index 06c2cf5e5af19..12745ae40bc0a 100644 --- a/libavcodec/dvdsubenc.c +++ b/libavcodec/dvdsubenc.c @@ -496,7 +496,6 @@ static const AVOption options[] = { static const AVClass dvdsubenc_class = { .class_name = "VOBSUB subtitle encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/dvenc.c b/libavcodec/dvenc.c index ce21247081d19..f0820bb2eeef1 100644 --- a/libavcodec/dvenc.c +++ b/libavcodec/dvenc.c @@ -1231,7 +1231,6 @@ static const AVOption dv_options[] = { static const AVClass dvvideo_encode_class = { .class_name = "dvvideo encoder", - .item_name = av_default_item_name, .option = dv_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/eac3enc.c b/libavcodec/eac3enc.c index 4b3236d4e5e80..afadd77345012 100644 --- a/libavcodec/eac3enc.c +++ b/libavcodec/eac3enc.c @@ -35,7 +35,6 @@ static const AVClass eac3enc_class = { .class_name = "E-AC-3 Encoder", - .item_name = av_default_item_name, .option = &ff_ac3_enc_options[2], /* First two options are AC-3 only. */ .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/evrcdec.c b/libavcodec/evrcdec.c index af7640d7e15de..9de8b8a771b11 100644 --- a/libavcodec/evrcdec.c +++ b/libavcodec/evrcdec.c @@ -924,7 +924,6 @@ static const AVOption options[] = { static const AVClass evrcdec_class = { .class_name = "evrc", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/exr.c b/libavcodec/exr.c index b30d3b740422c..a05f8bada68c7 100644 --- a/libavcodec/exr.c +++ b/libavcodec/exr.c @@ -2345,7 +2345,6 @@ static const AVOption options[] = { static const AVClass exr_class = { .class_name = "EXR", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/exrenc.c b/libavcodec/exrenc.c index 36327f498cb47..ded7fad18b310 100644 --- a/libavcodec/exrenc.c +++ b/libavcodec/exrenc.c @@ -535,7 +535,6 @@ static const AVOption options[] = { static const AVClass exr_class = { .class_name = "exr", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/extract_extradata_bsf.c b/libavcodec/extract_extradata_bsf.c index baa629295fba7..aee63d1b5ddf2 100644 --- a/libavcodec/extract_extradata_bsf.c +++ b/libavcodec/extract_extradata_bsf.c @@ -457,7 +457,6 @@ static const AVOption options[] = { static const AVClass extract_extradata_class = { .class_name = "extract_extradata", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/ffv1enc.c b/libavcodec/ffv1enc.c index 2778c63012e94..5bd00f5d9ef1f 100644 --- a/libavcodec/ffv1enc.c +++ b/libavcodec/ffv1enc.c @@ -1263,7 +1263,6 @@ static const AVOption options[] = { static const AVClass ffv1_class = { .class_name = "ffv1 encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/fic.c b/libavcodec/fic.c index fb998021371f3..ddda8effe00bd 100644 --- a/libavcodec/fic.c +++ b/libavcodec/fic.c @@ -479,7 +479,6 @@ static const AVOption options[] = { static const AVClass fic_decoder_class = { .class_name = "FIC decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/filter_units_bsf.c b/libavcodec/filter_units_bsf.c index 9336753148617..a67d55e57fc09 100644 --- a/libavcodec/filter_units_bsf.c +++ b/libavcodec/filter_units_bsf.c @@ -268,7 +268,6 @@ static const AVOption filter_units_options[] = { static const AVClass filter_units_class = { .class_name = "filter_units", - .item_name = av_default_item_name, .option = filter_units_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/fitsdec.c b/libavcodec/fitsdec.c index 284e945ba5b5a..c1d0bd9ca6667 100644 --- a/libavcodec/fitsdec.c +++ b/libavcodec/fitsdec.c @@ -316,7 +316,6 @@ static const AVOption fits_options[] = { static const AVClass fits_decoder_class = { .class_name = "FITS decoder", - .item_name = av_default_item_name, .option = fits_options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DECODER, diff --git a/libavcodec/flacdec.c b/libavcodec/flacdec.c index ed2de14d0a98b..95aee363f4934 100644 --- a/libavcodec/flacdec.c +++ b/libavcodec/flacdec.c @@ -820,7 +820,6 @@ static const AVOption options[] = { static const AVClass flac_decoder_class = { .class_name = "FLAC decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/flacenc.c b/libavcodec/flacenc.c index a449b73235370..605e5db974081 100644 --- a/libavcodec/flacenc.c +++ b/libavcodec/flacenc.c @@ -1743,7 +1743,6 @@ static const AVOption options[] = { static const AVClass flac_encoder_class = { .class_name = "FLAC encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/frwu.c b/libavcodec/frwu.c index 70bc136765bda..fc6b7058af081 100644 --- a/libavcodec/frwu.c +++ b/libavcodec/frwu.c @@ -110,7 +110,6 @@ static const AVOption frwu_options[] = { static const AVClass frwu_class = { .class_name = "frwu Decoder", - .item_name = av_default_item_name, .option = frwu_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/g722dec.c b/libavcodec/g722dec.c index 231f1d32eb40a..9f40e0b7406e9 100644 --- a/libavcodec/g722dec.c +++ b/libavcodec/g722dec.c @@ -51,7 +51,6 @@ static const AVOption options[] = { static const AVClass g722_decoder_class = { .class_name = "g722 decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/g723_1dec.c b/libavcodec/g723_1dec.c index 5fe4a21d9b279..4c8ebc9075426 100644 --- a/libavcodec/g723_1dec.c +++ b/libavcodec/g723_1dec.c @@ -1105,7 +1105,6 @@ static const AVOption options[] = { static const AVClass g723_1dec_class = { .class_name = "G.723.1 decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/g726.c b/libavcodec/g726.c index 6c5638760d42f..f25e60b21bb27 100644 --- a/libavcodec/g726.c +++ b/libavcodec/g726.c @@ -388,7 +388,6 @@ static const AVOption options[] = { static const AVClass g726_class = { .class_name = "g726", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/gif.c b/libavcodec/gif.c index 11add64468829..2a132fb18ce12 100644 --- a/libavcodec/gif.c +++ b/libavcodec/gif.c @@ -542,7 +542,6 @@ static const AVOption gif_options[] = { static const AVClass gif_class = { .class_name = "GIF encoder", - .item_name = av_default_item_name, .option = gif_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/gifdec.c b/libavcodec/gifdec.c index a97a6d15fc375..f99eaff73bdcf 100644 --- a/libavcodec/gifdec.c +++ b/libavcodec/gifdec.c @@ -542,7 +542,6 @@ static const AVOption options[] = { static const AVClass decoder_class = { .class_name = "gif decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DECODER, diff --git a/libavcodec/h264_metadata_bsf.c b/libavcodec/h264_metadata_bsf.c index 39b9e8eee4e0d..9a745b056bdda 100644 --- a/libavcodec/h264_metadata_bsf.c +++ b/libavcodec/h264_metadata_bsf.c @@ -703,7 +703,6 @@ static const AVOption h264_metadata_options[] = { static const AVClass h264_metadata_class = { .class_name = "h264_metadata_bsf", - .item_name = av_default_item_name, .option = h264_metadata_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/h264dec.c b/libavcodec/h264dec.c index 9f5893c5122db..2c0cdf919d933 100644 --- a/libavcodec/h264dec.c +++ b/libavcodec/h264dec.c @@ -1104,7 +1104,6 @@ static const AVOption h264_options[] = { static const AVClass h264_class = { .class_name = "H264 Decoder", - .item_name = av_default_item_name, .option = h264_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/h265_metadata_bsf.c b/libavcodec/h265_metadata_bsf.c index 6787bd14a123c..4fdd2a532e107 100644 --- a/libavcodec/h265_metadata_bsf.c +++ b/libavcodec/h265_metadata_bsf.c @@ -483,7 +483,6 @@ static const AVOption h265_metadata_options[] = { static const AVClass h265_metadata_class = { .class_name = "h265_metadata_bsf", - .item_name = av_default_item_name, .option = h265_metadata_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/h266_metadata_bsf.c b/libavcodec/h266_metadata_bsf.c index 1f0f875cfeef9..09e91dd80d802 100644 --- a/libavcodec/h266_metadata_bsf.c +++ b/libavcodec/h266_metadata_bsf.c @@ -130,7 +130,6 @@ static const AVOption h266_metadata_options[] = { static const AVClass h266_metadata_class = { .class_name = "h266_metadata_bsf", - .item_name = av_default_item_name, .option = h266_metadata_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/hapenc.c b/libavcodec/hapenc.c index 7de7358e3d9f2..eb492c9db54a4 100644 --- a/libavcodec/hapenc.c +++ b/libavcodec/hapenc.c @@ -341,7 +341,6 @@ static const AVOption options[] = { static const AVClass hapenc_class = { .class_name = "Hap encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/hapqa_extract_bsf.c b/libavcodec/hapqa_extract_bsf.c index 0d9b40aaa67fe..cf6872fe2deb2 100644 --- a/libavcodec/hapqa_extract_bsf.c +++ b/libavcodec/hapqa_extract_bsf.c @@ -120,7 +120,6 @@ static const AVOption options[] = { static const AVClass hapqa_extract_class = { .class_name = "hapqa_extract_bsf", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/hevcdec.c b/libavcodec/hevcdec.c index b5311ae510e55..f21d15fe72087 100644 --- a/libavcodec/hevcdec.c +++ b/libavcodec/hevcdec.c @@ -3676,7 +3676,6 @@ static const AVOption options[] = { static const AVClass hevc_decoder_class = { .class_name = "HEVC decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/huffyuvenc.c b/libavcodec/huffyuvenc.c index b02b3c7a9a042..73f543ac248c9 100644 --- a/libavcodec/huffyuvenc.c +++ b/libavcodec/huffyuvenc.c @@ -1066,14 +1066,12 @@ static const AVOption ff_options[] = { static const AVClass normal_class = { .class_name = "huffyuv", - .item_name = av_default_item_name, .option = normal_options, .version = LIBAVUTIL_VERSION_INT, }; static const AVClass ff_class = { .class_name = "ffvhuff", - .item_name = av_default_item_name, .option = ff_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/ituh263enc.c b/libavcodec/ituh263enc.c index 97abfb3f45629..6acb13299af0e 100644 --- a/libavcodec/ituh263enc.c +++ b/libavcodec/ituh263enc.c @@ -896,7 +896,6 @@ static const AVOption h263_options[] = { static const AVClass h263_class = { .class_name = "H.263 encoder", - .item_name = av_default_item_name, .option = h263_options, .version = LIBAVUTIL_VERSION_INT, }; @@ -927,7 +926,6 @@ static const AVOption h263p_options[] = { }; static const AVClass h263p_class = { .class_name = "H.263p encoder", - .item_name = av_default_item_name, .option = h263p_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/j2kenc.c b/libavcodec/j2kenc.c index 5f95b772d19eb..e0eb73281a172 100644 --- a/libavcodec/j2kenc.c +++ b/libavcodec/j2kenc.c @@ -1827,7 +1827,6 @@ static const AVOption options[] = { static const AVClass j2k_class = { .class_name = "jpeg 2000 encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/jpeg2000dec.c b/libavcodec/jpeg2000dec.c index 691cfbd891531..6e662761b0f54 100644 --- a/libavcodec/jpeg2000dec.c +++ b/libavcodec/jpeg2000dec.c @@ -2543,7 +2543,6 @@ static const AVOption options[] = { static const AVClass jpeg2000_class = { .class_name = "jpeg2000", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/jpeglsenc.c b/libavcodec/jpeglsenc.c index 53394102df3e6..89488d35cb103 100644 --- a/libavcodec/jpeglsenc.c +++ b/libavcodec/jpeglsenc.c @@ -466,7 +466,6 @@ static const AVOption options[] = { static const AVClass jpegls_class = { .class_name = "jpegls", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libaomenc.c b/libavcodec/libaomenc.c index aa800834fe76b..5d286fc98bb21 100644 --- a/libavcodec/libaomenc.c +++ b/libavcodec/libaomenc.c @@ -1546,7 +1546,6 @@ static const FFCodecDefault defaults[] = { static const AVClass class_aom = { .class_name = "libaom-av1 encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libaribb24.c b/libavcodec/libaribb24.c index 29479e375d7ba..0706b50c1c5a2 100644 --- a/libavcodec/libaribb24.c +++ b/libavcodec/libaribb24.c @@ -387,7 +387,6 @@ static const AVOption options[] = { static const AVClass aribb24_class = { .class_name = "libaribb24 decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libaribcaption.c b/libavcodec/libaribcaption.c index e87f303aa8b44..b32d87d5a671f 100644 --- a/libavcodec/libaribcaption.c +++ b/libavcodec/libaribcaption.c @@ -1161,7 +1161,6 @@ static const AVOption options[] = { static const AVClass aribcaption_class = { .class_name = "aribcaption decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libcodec2.c b/libavcodec/libcodec2.c index 83f68e85c79ed..950d48685e8b4 100644 --- a/libavcodec/libcodec2.c +++ b/libavcodec/libcodec2.c @@ -43,7 +43,6 @@ static const AVOption options[] = { static const AVClass libcodec2_enc_class = { .class_name = "libcodec2 encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libdav1d.c b/libavcodec/libdav1d.c index 11cdbca274853..3a35bd1825839 100644 --- a/libavcodec/libdav1d.c +++ b/libavcodec/libdav1d.c @@ -682,7 +682,6 @@ static const AVOption libdav1d_options[] = { static const AVClass libdav1d_class = { .class_name = "libdav1d decoder", - .item_name = av_default_item_name, .option = libdav1d_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libfdk-aacdec.c b/libavcodec/libfdk-aacdec.c index 8c1586e25eff2..6b201b64ee45c 100644 --- a/libavcodec/libfdk-aacdec.c +++ b/libavcodec/libfdk-aacdec.c @@ -105,7 +105,6 @@ static const AVOption fdk_aac_dec_options[] = { static const AVClass fdk_aac_dec_class = { .class_name = "libfdk-aac decoder", - .item_name = av_default_item_name, .option = fdk_aac_dec_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libfdk-aacenc.c b/libavcodec/libfdk-aacenc.c index d400ac2e7ce28..fac720b12f6a5 100644 --- a/libavcodec/libfdk-aacenc.c +++ b/libavcodec/libfdk-aacenc.c @@ -86,7 +86,6 @@ static const AVOption aac_enc_options[] = { static const AVClass aac_enc_class = { .class_name = "libfdk_aac", - .item_name = av_default_item_name, .option = aac_enc_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libilbc.c b/libavcodec/libilbc.c index 9ca90bf0c668a..031f67c9bc134 100644 --- a/libavcodec/libilbc.c +++ b/libavcodec/libilbc.c @@ -62,7 +62,6 @@ static const AVOption ilbc_dec_options[] = { static const AVClass ilbc_dec_class = { .class_name = "libilbc", - .item_name = av_default_item_name, .option = ilbc_dec_options, .version = LIBAVUTIL_VERSION_INT, }; @@ -147,7 +146,6 @@ static const AVOption ilbc_enc_options[] = { static const AVClass ilbc_enc_class = { .class_name = "libilbc", - .item_name = av_default_item_name, .option = ilbc_enc_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libjxlenc.c b/libavcodec/libjxlenc.c index d707f3a61b51d..a72956018dde2 100644 --- a/libavcodec/libjxlenc.c +++ b/libavcodec/libjxlenc.c @@ -471,7 +471,6 @@ static const AVOption libjxl_encode_options[] = { static const AVClass libjxl_encode_class = { .class_name = "libjxl", - .item_name = av_default_item_name, .option = libjxl_encode_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libkvazaar.c b/libavcodec/libkvazaar.c index 0711d9ab3870c..8d52df142d634 100644 --- a/libavcodec/libkvazaar.c +++ b/libavcodec/libkvazaar.c @@ -316,7 +316,6 @@ static const AVOption options[] = { static const AVClass class = { .class_name = "libkvazaar", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libmp3lame.c b/libavcodec/libmp3lame.c index 312bc4230fa37..4ad03900e8212 100644 --- a/libavcodec/libmp3lame.c +++ b/libavcodec/libmp3lame.c @@ -321,7 +321,6 @@ static const AVOption options[] = { static const AVClass libmp3lame_class = { .class_name = "libmp3lame encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libopencore-amr.c b/libavcodec/libopencore-amr.c index 641a156129861..73b623b6e7007 100644 --- a/libavcodec/libopencore-amr.c +++ b/libavcodec/libopencore-amr.c @@ -190,7 +190,6 @@ static const AVOption options[] = { static const AVClass amrnb_class = { .class_name = "libopencore_amrnb", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libopenh264enc.c b/libavcodec/libopenh264enc.c index 6f231d22b2e2d..4d303cd9e793d 100644 --- a/libavcodec/libopenh264enc.c +++ b/libavcodec/libopenh264enc.c @@ -90,7 +90,6 @@ static const AVOption options[] = { static const AVClass class = { .class_name = "libopenh264enc", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libopenjpegenc.c b/libavcodec/libopenjpegenc.c index 009c7a437744e..e9aa5b9649f3a 100644 --- a/libavcodec/libopenjpegenc.c +++ b/libavcodec/libopenjpegenc.c @@ -749,7 +749,6 @@ static const AVOption options[] = { static const AVClass openjpeg_class = { .class_name = "libopenjpeg", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libopusdec.c b/libavcodec/libopusdec.c index 9b9a610343082..a1e47fd06ceac 100644 --- a/libavcodec/libopusdec.c +++ b/libavcodec/libopusdec.c @@ -225,7 +225,6 @@ static const AVOption libopusdec_options[] = { static const AVClass libopusdec_class = { .class_name = "libopusdec", - .item_name = av_default_item_name, .option = libopusdec_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libopusenc.c b/libavcodec/libopusenc.c index f395d84af5b95..1ab954f06a5be 100644 --- a/libavcodec/libopusenc.c +++ b/libavcodec/libopusenc.c @@ -564,7 +564,6 @@ static const AVOption libopus_options[] = { static const AVClass libopus_class = { .class_name = "libopus", - .item_name = av_default_item_name, .option = libopus_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/librav1e.c b/libavcodec/librav1e.c index 56539435a7e5e..68bf16232a231 100644 --- a/libavcodec/librav1e.c +++ b/libavcodec/librav1e.c @@ -667,7 +667,6 @@ const enum AVPixelFormat librav1e_pix_fmts[] = { static const AVClass class = { .class_name = "librav1e", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/librsvgdec.c b/libavcodec/librsvgdec.c index c328fbc774237..25d707e1a5c88 100644 --- a/libavcodec/librsvgdec.c +++ b/libavcodec/librsvgdec.c @@ -156,7 +156,6 @@ static const AVOption options[] = { static const AVClass librsvg_decoder_class = { .class_name = "Librsvg", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libspeexenc.c b/libavcodec/libspeexenc.c index 9fdb247863b42..3180a9315046a 100644 --- a/libavcodec/libspeexenc.c +++ b/libavcodec/libspeexenc.c @@ -330,7 +330,6 @@ static const AVOption options[] = { static const AVClass speex_class = { .class_name = "libspeex", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libsvtav1.c b/libavcodec/libsvtav1.c index 862192945b513..0679daad37f7b 100644 --- a/libavcodec/libsvtav1.c +++ b/libavcodec/libsvtav1.c @@ -671,7 +671,6 @@ static const AVOption options[] = { static const AVClass class = { .class_name = "libsvtav1", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libtwolame.c b/libavcodec/libtwolame.c index 9c0156aa2577d..bedb2e1feddac 100644 --- a/libavcodec/libtwolame.c +++ b/libavcodec/libtwolame.c @@ -194,7 +194,6 @@ static const AVOption options[] = { static const AVClass twolame_class = { .class_name = "libtwolame encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libvo-amrwbenc.c b/libavcodec/libvo-amrwbenc.c index 02b8941a6d201..a802ccdcf8c5a 100644 --- a/libavcodec/libvo-amrwbenc.c +++ b/libavcodec/libvo-amrwbenc.c @@ -47,7 +47,6 @@ static const AVOption options[] = { static const AVClass amrwb_class = { .class_name = "libvo_amrwbenc", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libvorbisenc.c b/libavcodec/libvorbisenc.c index 6331cf0d79532..dedc43563ba79 100644 --- a/libavcodec/libvorbisenc.c +++ b/libavcodec/libvorbisenc.c @@ -67,7 +67,6 @@ static const FFCodecDefault defaults[] = { static const AVClass vorbis_class = { .class_name = "libvorbis", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c index 80988a2608fe3..7ad399eb9c2c4 100644 --- a/libavcodec/libvpxenc.c +++ b/libavcodec/libvpxenc.c @@ -2023,7 +2023,6 @@ static av_cold int vp8_init(AVCodecContext *avctx) static const AVClass class_vp8 = { .class_name = "libvpx-vp8 encoder", - .item_name = av_default_item_name, .option = vp8_options, .version = LIBAVUTIL_VERSION_INT, }; @@ -2096,7 +2095,6 @@ static av_cold void vp9_init_static(FFCodec *codec) static const AVClass class_vp9 = { .class_name = "libvpx-vp9 encoder", - .item_name = av_default_item_name, .option = vp9_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libwebpenc_common.c b/libavcodec/libwebpenc_common.c index 761219e50e772..da9d41622e489 100644 --- a/libavcodec/libwebpenc_common.c +++ b/libavcodec/libwebpenc_common.c @@ -53,7 +53,6 @@ static const AVOption options[] = { const AVClass ff_libwebpenc_class = { .class_name = "libwebp encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c index 182e20f62227a..5ea9540d30219 100644 --- a/libavcodec/libx264.c +++ b/libavcodec/libx264.c @@ -1462,7 +1462,6 @@ static const FFCodecDefault x264_defaults[] = { #if CONFIG_LIBX264_ENCODER static const AVClass x264_class = { .class_name = "libx264", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; @@ -1504,7 +1503,6 @@ FFCodec ff_libx264_encoder = { #if CONFIG_LIBX264RGB_ENCODER static const AVClass rgbclass = { .class_name = "libx264rgb", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; @@ -1536,7 +1534,6 @@ const FFCodec ff_libx264rgb_encoder = { #if CONFIG_LIBX262_ENCODER static const AVClass X262_class = { .class_name = "libx262", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c index 447e6da25f05c..7f4552f68541c 100644 --- a/libavcodec/libx265.c +++ b/libavcodec/libx265.c @@ -873,7 +873,6 @@ static const AVOption options[] = { static const AVClass class = { .class_name = "libx265", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libxavs.c b/libavcodec/libxavs.c index 6c29539f2436d..0e0ec32b8cd75 100644 --- a/libavcodec/libxavs.c +++ b/libavcodec/libxavs.c @@ -411,7 +411,6 @@ static const AVOption options[] = { static const AVClass xavs_class = { .class_name = "libxavs", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libxavs2.c b/libavcodec/libxavs2.c index c493ddc325ad3..bf2b08a60c4ce 100644 --- a/libavcodec/libxavs2.c +++ b/libavcodec/libxavs2.c @@ -274,7 +274,6 @@ static const AVOption options[] = { static const AVClass libxavs2 = { .class_name = "XAVS2EContext", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libxevd.c b/libavcodec/libxevd.c index 58ef90d929ad6..5dec91ee23f64 100644 --- a/libavcodec/libxevd.c +++ b/libavcodec/libxevd.c @@ -517,7 +517,6 @@ static av_cold int libxevd_close(AVCodecContext *avctx) static const AVClass libxevd_class = { .class_name = "libxevd", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libxeve.c b/libavcodec/libxeve.c index c10b7de023a90..b71d14f1df732 100644 --- a/libavcodec/libxeve.c +++ b/libavcodec/libxeve.c @@ -580,7 +580,6 @@ static const AVOption libxeve_options[] = { static const AVClass libxeve_class = { .class_name = "libxeve", - .item_name = av_default_item_name, .option = libxeve_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libxvid.c b/libavcodec/libxvid.c index aba875b6b859e..72577f5b6a316 100644 --- a/libavcodec/libxvid.c +++ b/libavcodec/libxvid.c @@ -892,7 +892,6 @@ static const AVOption options[] = { static const AVClass xvid_class = { .class_name = "libxvid", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/libzvbi-teletextdec.c b/libavcodec/libzvbi-teletextdec.c index 45e30eb01c9c7..878027275fc29 100644 --- a/libavcodec/libzvbi-teletextdec.c +++ b/libavcodec/libzvbi-teletextdec.c @@ -806,7 +806,6 @@ static const AVOption options[] = { static const AVClass teletext_class = { .class_name = "libzvbi_teletextdec", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/ljpegenc.c b/libavcodec/ljpegenc.c index aa62beac71e0c..c3031631a2013 100644 --- a/libavcodec/ljpegenc.c +++ b/libavcodec/ljpegenc.c @@ -306,7 +306,6 @@ static const AVOption options[] = { static const AVClass ljpeg_class = { .class_name = "ljpeg", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/magicyuvenc.c b/libavcodec/magicyuvenc.c index ccd6a54936203..a74212086bcf1 100644 --- a/libavcodec/magicyuvenc.c +++ b/libavcodec/magicyuvenc.c @@ -666,7 +666,6 @@ static const AVOption options[] = { static const AVClass magicyuv_class = { .class_name = "magicyuv", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/mediacodec_wrapper.c b/libavcodec/mediacodec_wrapper.c index 0880ddd3efb48..f2fb39232930f 100644 --- a/libavcodec/mediacodec_wrapper.c +++ b/libavcodec/mediacodec_wrapper.c @@ -136,7 +136,6 @@ static const struct FFJniField jni_amediaformat_mapping[] = { static const AVClass amediaformat_class = { .class_name = "amediaformat", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, }; @@ -256,7 +255,6 @@ static const struct FFJniField jni_amediacodec_mapping[] = { static const AVClass amediacodec_class = { .class_name = "amediacodec", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, }; @@ -1989,13 +1987,11 @@ static const FFAMediaCodec media_codec_ndk; static const AVClass amediaformat_ndk_class = { .class_name = "amediaformat_ndk", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, }; static const AVClass amediacodec_ndk_class = { .class_name = "amediacodec_ndk", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/mediacodecdec.c b/libavcodec/mediacodecdec.c index b8587289a2347..9698bd2079913 100644 --- a/libavcodec/mediacodecdec.c +++ b/libavcodec/mediacodecdec.c @@ -558,7 +558,6 @@ static const AVOption ff_mediacodec_vdec_options[] = { #define DECLARE_MEDIACODEC_VCLASS(short_name) \ static const AVClass ff_##short_name##_mediacodec_dec_class = { \ .class_name = #short_name "_mediacodec", \ - .item_name = av_default_item_name, \ .option = ff_mediacodec_vdec_options, \ .version = LIBAVUTIL_VERSION_INT, \ }; diff --git a/libavcodec/mediacodecenc.c b/libavcodec/mediacodecenc.c index 7eae54224806d..cab0189a9f32c 100644 --- a/libavcodec/mediacodecenc.c +++ b/libavcodec/mediacodecenc.c @@ -607,7 +607,6 @@ static const AVCodecHWConfigInternal *const mediacodec_hw_configs[] = { #define MEDIACODEC_ENCODER_CLASS(name) \ static const AVClass name ## _mediacodec_class = { \ .class_name = #name "_mediacodec", \ - .item_name = av_default_item_name, \ .option = name ## _options, \ .version = LIBAVUTIL_VERSION_INT, \ }; \ diff --git a/libavcodec/mfenc.c b/libavcodec/mfenc.c index 3c50a6c074ec9..8bb6f1d38de2e 100644 --- a/libavcodec/mfenc.c +++ b/libavcodec/mfenc.c @@ -1226,7 +1226,6 @@ static int mf_init(AVCodecContext *avctx) #define MF_ENCODER(MEDIATYPE, NAME, ID, OPTS, FMTS, CAPS) \ static const AVClass ff_ ## NAME ## _mf_encoder_class = { \ .class_name = #NAME "_mf", \ - .item_name = av_default_item_name, \ .option = OPTS, \ .version = LIBAVUTIL_VERSION_INT, \ }; \ diff --git a/libavcodec/mjpegdec.c b/libavcodec/mjpegdec.c index 8676155ecfa1d..d78b5453a5109 100644 --- a/libavcodec/mjpegdec.c +++ b/libavcodec/mjpegdec.c @@ -2991,7 +2991,6 @@ static const AVOption options[] = { static const AVClass mjpegdec_class = { .class_name = "MJPEG decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/mjpegenc.c b/libavcodec/mjpegenc.c index 508772987f31c..c3b4723391460 100644 --- a/libavcodec/mjpegenc.c +++ b/libavcodec/mjpegenc.c @@ -637,7 +637,6 @@ FF_MPV_COMMON_OPTS #if CONFIG_MJPEG_ENCODER static const AVClass mjpeg_class = { .class_name = "mjpeg encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; @@ -667,7 +666,6 @@ const FFCodec ff_mjpeg_encoder = { #if CONFIG_AMV_ENCODER static const AVClass amv_class = { .class_name = "amv encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c index ead5ecee76e88..5aac08504b592 100644 --- a/libavcodec/mlpdec.c +++ b/libavcodec/mlpdec.c @@ -1444,14 +1444,12 @@ static const AVOption options[] = { static const AVClass mlp_decoder_class = { .class_name = "MLP decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; static const AVClass truehd_decoder_class = { .class_name = "TrueHD decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/mlpenc.c b/libavcodec/mlpenc.c index 895362facabbf..563f53ee34a9d 100644 --- a/libavcodec/mlpenc.c +++ b/libavcodec/mlpenc.c @@ -2289,7 +2289,6 @@ static const AVOption mlp_options[] = { static const AVClass mlp_class = { .class_name = "mlpenc", - .item_name = av_default_item_name, .option = mlp_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/mmaldec.c b/libavcodec/mmaldec.c index 2dc7bbee046ba..c344d1f44911a 100644 --- a/libavcodec/mmaldec.c +++ b/libavcodec/mmaldec.c @@ -825,7 +825,6 @@ static const AVOption options[]={ static const AVClass ffmmal_dec_class = { .class_name = "mmal_dec", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/movtextdec.c b/libavcodec/movtextdec.c index f799252bf2129..b82104d16459b 100644 --- a/libavcodec/movtextdec.c +++ b/libavcodec/movtextdec.c @@ -586,7 +586,6 @@ static const AVOption options[] = { static const AVClass mov_text_decoder_class = { .class_name = "MOV text decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/movtextenc.c b/libavcodec/movtextenc.c index 7aa74d7c9d05f..fc9ff2d7af093 100644 --- a/libavcodec/movtextenc.c +++ b/libavcodec/movtextenc.c @@ -694,7 +694,6 @@ static const AVOption options[] = { static const AVClass mov_text_encoder_class = { .class_name = "MOV text enoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/mpeg12enc.c b/libavcodec/mpeg12enc.c index 0135623c0ef77..01d00a8147d71 100644 --- a/libavcodec/mpeg12enc.c +++ b/libavcodec/mpeg12enc.c @@ -1225,7 +1225,6 @@ static const AVOption mpeg2_options[] = { #define mpeg12_class(x) \ static const AVClass mpeg ## x ## _class = { \ .class_name = "mpeg" # x "video encoder", \ - .item_name = av_default_item_name, \ .option = mpeg ## x ## _options, \ .version = LIBAVUTIL_VERSION_INT, \ }; diff --git a/libavcodec/mpeg2_metadata_bsf.c b/libavcodec/mpeg2_metadata_bsf.c index 1aa6e027914ec..d491242338011 100644 --- a/libavcodec/mpeg2_metadata_bsf.c +++ b/libavcodec/mpeg2_metadata_bsf.c @@ -223,7 +223,6 @@ static const AVOption mpeg2_metadata_options[] = { static const AVClass mpeg2_metadata_class = { .class_name = "mpeg2_metadata_bsf", - .item_name = av_default_item_name, .option = mpeg2_metadata_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4videodec.c index 7e05f2eeca9a9..7485c5618b797 100644 --- a/libavcodec/mpeg4videodec.c +++ b/libavcodec/mpeg4videodec.c @@ -3847,7 +3847,6 @@ static const AVOption mpeg4_options[] = { static const AVClass mpeg4_class = { .class_name = "MPEG4 Video Decoder", - .item_name = av_default_item_name, .option = mpeg4_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/mpeg4videoenc.c b/libavcodec/mpeg4videoenc.c index d1e50612ddf7f..5f5b9aebc4c22 100644 --- a/libavcodec/mpeg4videoenc.c +++ b/libavcodec/mpeg4videoenc.c @@ -1388,7 +1388,6 @@ static const AVOption options[] = { static const AVClass mpeg4enc_class = { .class_name = "MPEG4 encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c index 6d2d417454cf7..dcbf4c0429c72 100644 --- a/libavcodec/mpegvideo_enc.c +++ b/libavcodec/mpegvideo_enc.c @@ -99,7 +99,6 @@ static const AVOption mpv_generic_options[] = { const AVClass ff_mpv_enc_class = { .class_name = "generic mpegvideo encoder", - .item_name = av_default_item_name, .option = mpv_generic_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/noise_bsf.c b/libavcodec/noise_bsf.c index 7bdaa3c1db632..3f2aaba5d96f5 100644 --- a/libavcodec/noise_bsf.c +++ b/libavcodec/noise_bsf.c @@ -220,7 +220,6 @@ static const AVOption options[] = { static const AVClass noise_class = { .class_name = "noise", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/nvenc_av1.c b/libavcodec/nvenc_av1.c index 9f36796c4b3a4..4be29b027379d 100644 --- a/libavcodec/nvenc_av1.c +++ b/libavcodec/nvenc_av1.c @@ -167,7 +167,6 @@ static const FFCodecDefault defaults[] = { static const AVClass av1_nvenc_class = { .class_name = "av1_nvenc", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/nvenc_h264.c b/libavcodec/nvenc_h264.c index 85a13634a3c88..8cad2cca99331 100644 --- a/libavcodec/nvenc_h264.c +++ b/libavcodec/nvenc_h264.c @@ -233,7 +233,6 @@ static const FFCodecDefault defaults[] = { static const AVClass h264_nvenc_class = { .class_name = "h264_nvenc", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/nvenc_hevc.c b/libavcodec/nvenc_hevc.c index 840df6da8a4aa..388e5dd0cd078 100644 --- a/libavcodec/nvenc_hevc.c +++ b/libavcodec/nvenc_hevc.c @@ -214,7 +214,6 @@ static const FFCodecDefault defaults[] = { static const AVClass hevc_nvenc_class = { .class_name = "hevc_nvenc", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/omx.c b/libavcodec/omx.c index 82fd492071abf..a4c873120a62d 100644 --- a/libavcodec/omx.c +++ b/libavcodec/omx.c @@ -933,7 +933,6 @@ static const enum AVPixelFormat omx_encoder_pix_fmts[] = { static const AVClass omx_mpeg4enc_class = { .class_name = "mpeg4_omx", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; @@ -954,7 +953,6 @@ const FFCodec ff_mpeg4_omx_encoder = { static const AVClass omx_h264enc_class = { .class_name = "h264_omx", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/opus_metadata_bsf.c b/libavcodec/opus_metadata_bsf.c index 2a0f86cec35d9..3b243c76ce485 100644 --- a/libavcodec/opus_metadata_bsf.c +++ b/libavcodec/opus_metadata_bsf.c @@ -49,7 +49,6 @@ static const AVOption opus_metadata_options[] = { static const AVClass opus_metadata_class = { .class_name = "opus_metadata_bsf", - .item_name = av_default_item_name, .option = opus_metadata_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/opusdec.c b/libavcodec/opusdec.c index c5f06e060044f..f9c334247d0f9 100644 --- a/libavcodec/opusdec.c +++ b/libavcodec/opusdec.c @@ -762,7 +762,6 @@ static const AVOption opus_options[] = { static const AVClass opus_class = { .class_name = "Opus Decoder", - .item_name = av_default_item_name, .option = opus_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/opusenc.c b/libavcodec/opusenc.c index a2f74a347b4bd..2b590d2b50d73 100644 --- a/libavcodec/opusenc.c +++ b/libavcodec/opusenc.c @@ -719,7 +719,6 @@ static const AVOption opusenc_options[] = { static const AVClass opusenc_class = { .class_name = "Opus encoder", - .item_name = av_default_item_name, .option = opusenc_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/pcm_rechunk_bsf.c b/libavcodec/pcm_rechunk_bsf.c index 28b5722ac9715..d5eb6e98584e6 100644 --- a/libavcodec/pcm_rechunk_bsf.c +++ b/libavcodec/pcm_rechunk_bsf.c @@ -187,7 +187,6 @@ static const AVOption options[] = { static const AVClass pcm_rechunk_class = { .class_name = "pcm_rechunk_bsf", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/pgssubdec.c b/libavcodec/pgssubdec.c index 5f76f12615da2..26fdc2b9649f7 100644 --- a/libavcodec/pgssubdec.c +++ b/libavcodec/pgssubdec.c @@ -684,7 +684,6 @@ static const AVOption options[] = { static const AVClass pgsdec_class = { .class_name = "PGS subtitle decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/photocd.c b/libavcodec/photocd.c index 07e8d460bd6e6..64f8212e7f9fc 100644 --- a/libavcodec/photocd.c +++ b/libavcodec/photocd.c @@ -454,7 +454,6 @@ static const AVOption options[] = { static const AVClass photocd_class = { .class_name = "photocd", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/pngenc.c b/libavcodec/pngenc.c index f0650962d2421..668d531ef69bb 100644 --- a/libavcodec/pngenc.c +++ b/libavcodec/pngenc.c @@ -1189,7 +1189,6 @@ static const AVOption options[] = { static const AVClass pngenc_class = { .class_name = "(A)PNG encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/prores_metadata_bsf.c b/libavcodec/prores_metadata_bsf.c index fb001b38d731b..18dac5424bf6d 100644 --- a/libavcodec/prores_metadata_bsf.c +++ b/libavcodec/prores_metadata_bsf.c @@ -161,7 +161,6 @@ static const AVOption options[] = { static const AVClass prores_metadata_class = { .class_name = "prores_metadata_bsf", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/proresenc_anatoliy.c b/libavcodec/proresenc_anatoliy.c index e7114f1646f33..a1cb46aa598ea 100644 --- a/libavcodec/proresenc_anatoliy.c +++ b/libavcodec/proresenc_anatoliy.c @@ -961,7 +961,6 @@ static const AVOption options[] = { static const AVClass prores_enc_class = { .class_name = "ProRes encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/proresenc_kostya.c b/libavcodec/proresenc_kostya.c index 52fe5639b19dc..e904632f8ef25 100644 --- a/libavcodec/proresenc_kostya.c +++ b/libavcodec/proresenc_kostya.c @@ -1415,7 +1415,6 @@ static const AVOption options[] = { static const AVClass proresenc_class = { .class_name = "ProRes encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/qsvdec.c b/libavcodec/qsvdec.c index 559f63698ab0c..e2db8701bb1de 100644 --- a/libavcodec/qsvdec.c +++ b/libavcodec/qsvdec.c @@ -1110,7 +1110,6 @@ static void qsv_decode_flush(AVCodecContext *avctx) #define DEFINE_QSV_DECODER_WITH_OPTION(x, X, bsf_name, opt) \ static const AVClass x##_qsv_class = { \ .class_name = #x "_qsv", \ - .item_name = av_default_item_name, \ .option = opt, \ .version = LIBAVUTIL_VERSION_INT, \ }; \ diff --git a/libavcodec/qsvenc_av1.c b/libavcodec/qsvenc_av1.c index c697845d7b5ea..92433dc2f80ee 100644 --- a/libavcodec/qsvenc_av1.c +++ b/libavcodec/qsvenc_av1.c @@ -123,7 +123,6 @@ static const AVOption options[] = { static const AVClass class = { .class_name = "av1_qsv encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/qsvenc_h264.c b/libavcodec/qsvenc_h264.c index 071a9a79e96e7..5627ca2c257f6 100644 --- a/libavcodec/qsvenc_h264.c +++ b/libavcodec/qsvenc_h264.c @@ -172,7 +172,6 @@ static const AVOption options[] = { static const AVClass class = { .class_name = "h264_qsv encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/qsvenc_hevc.c b/libavcodec/qsvenc_hevc.c index c5b7ac7cc4b2c..b3717022b916b 100644 --- a/libavcodec/qsvenc_hevc.c +++ b/libavcodec/qsvenc_hevc.c @@ -368,7 +368,6 @@ static const AVOption options[] = { static const AVClass class = { .class_name = "hevc_qsv encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/qsvenc_jpeg.c b/libavcodec/qsvenc_jpeg.c index 2add12adc9004..dc00942d4f8c6 100644 --- a/libavcodec/qsvenc_jpeg.c +++ b/libavcodec/qsvenc_jpeg.c @@ -68,7 +68,6 @@ static const AVOption options[] = { static const AVClass class = { .class_name = "mjpeg_qsv encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/qsvenc_mpeg2.c b/libavcodec/qsvenc_mpeg2.c index 22f1ff7c0d949..bbeac53ea42a4 100644 --- a/libavcodec/qsvenc_mpeg2.c +++ b/libavcodec/qsvenc_mpeg2.c @@ -76,7 +76,6 @@ static const AVOption options[] = { static const AVClass class = { .class_name = "mpeg2_qsv encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/qsvenc_vp9.c b/libavcodec/qsvenc_vp9.c index d0340ef94b20b..b7a596b4cec25 100644 --- a/libavcodec/qsvenc_vp9.c +++ b/libavcodec/qsvenc_vp9.c @@ -87,7 +87,6 @@ static const AVOption options[] = { static const AVClass class = { .class_name = "vp9_qsv encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/rasc.c b/libavcodec/rasc.c index 21c1829fc7e78..af14eee6f3ff5 100644 --- a/libavcodec/rasc.c +++ b/libavcodec/rasc.c @@ -793,7 +793,6 @@ static const AVOption options[] = { static const AVClass rasc_decoder_class = { .class_name = "rasc decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/remove_extradata_bsf.c b/libavcodec/remove_extradata_bsf.c index 66b7d00bd880d..67a9a040609c3 100644 --- a/libavcodec/remove_extradata_bsf.c +++ b/libavcodec/remove_extradata_bsf.c @@ -240,7 +240,6 @@ static const AVOption options[] = { static const AVClass remove_extradata_class = { .class_name = "remove_extradata", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/roqvideoenc.c b/libavcodec/roqvideoenc.c index 0933abf4f9967..0d02d1c101f0d 100644 --- a/libavcodec/roqvideoenc.c +++ b/libavcodec/roqvideoenc.c @@ -1110,7 +1110,6 @@ static const AVOption options[] = { static const AVClass roq_class = { .class_name = "RoQ", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/rpzaenc.c b/libavcodec/rpzaenc.c index d84555d6c664d..b13a3d8fe62b0 100644 --- a/libavcodec/rpzaenc.c +++ b/libavcodec/rpzaenc.c @@ -864,7 +864,6 @@ static const AVOption options[] = { static const AVClass rpza_class = { .class_name = "rpza", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/s302m.c b/libavcodec/s302m.c index f1b41608f3f9d..fc93c6ad05fd1 100644 --- a/libavcodec/s302m.c +++ b/libavcodec/s302m.c @@ -221,7 +221,6 @@ static const AVOption s302m_options[] = { static const AVClass s302m_class = { .class_name = "SMPTE 302M Decoder", - .item_name = av_default_item_name, .option = s302m_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/sbcenc.c b/libavcodec/sbcenc.c index 6e1dd88c72682..614a6fffa8488 100644 --- a/libavcodec/sbcenc.c +++ b/libavcodec/sbcenc.c @@ -339,7 +339,6 @@ static const AVOption options[] = { static const AVClass sbc_class = { .class_name = "sbc encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/setts_bsf.c b/libavcodec/setts_bsf.c index 9c27b24a39ae1..31f4d7afecc4e 100644 --- a/libavcodec/setts_bsf.c +++ b/libavcodec/setts_bsf.c @@ -262,7 +262,6 @@ static const AVOption options[] = { static const AVClass setts_class = { .class_name = "setts_bsf", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/sgienc.c b/libavcodec/sgienc.c index 5bbb72c03a65a..50c6555a02059 100644 --- a/libavcodec/sgienc.c +++ b/libavcodec/sgienc.c @@ -265,7 +265,6 @@ static const AVOption options[] = { static const AVClass sgi_class = { .class_name = "sgi", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/snowenc.c b/libavcodec/snowenc.c index c21521534667d..e4fd95390fa71 100644 --- a/libavcodec/snowenc.c +++ b/libavcodec/snowenc.c @@ -2120,7 +2120,6 @@ static const AVOption options[] = { static const AVClass snowenc_class = { .class_name = "snow encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/sunrastenc.c b/libavcodec/sunrastenc.c index b2d57f7235dbc..0c09cbd9073c9 100644 --- a/libavcodec/sunrastenc.c +++ b/libavcodec/sunrastenc.c @@ -203,7 +203,6 @@ static const AVOption options[] = { static const AVClass sunrast_class = { .class_name = "sunrast", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/svq1enc.c b/libavcodec/svq1enc.c index 894ae552bb8e7..764d047799035 100644 --- a/libavcodec/svq1enc.c +++ b/libavcodec/svq1enc.c @@ -745,7 +745,6 @@ static const AVOption options[] = { static const AVClass svq1enc_class = { .class_name = "svq1enc", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/targaenc.c b/libavcodec/targaenc.c index d9c500b97de97..cf5da1fc09649 100644 --- a/libavcodec/targaenc.c +++ b/libavcodec/targaenc.c @@ -197,7 +197,6 @@ static const AVOption options[] = { static const AVClass targa_class = { .class_name = "targa", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/textdec.c b/libavcodec/textdec.c index b9aebff002c7d..852f806e4539d 100644 --- a/libavcodec/textdec.c +++ b/libavcodec/textdec.c @@ -74,7 +74,6 @@ static void text_flush(AVCodecContext *avctx) static const AVClass textsub_decoder_class = { .class_name = "text/vplayer/stl/pjs/subviewer1 decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index adb49e4525edf..3092e319d3a34 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -2454,7 +2454,6 @@ static const AVOption tiff_options[] = { static const AVClass tiff_decoder_class = { .class_name = "TIFF decoder", - .item_name = av_default_item_name, .option = tiff_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/tiffenc.c b/libavcodec/tiffenc.c index 06d7dcc99d8cb..a83657a219163 100644 --- a/libavcodec/tiffenc.c +++ b/libavcodec/tiffenc.c @@ -564,7 +564,6 @@ static const AVOption options[] = { static const AVClass tiffenc_class = { .class_name = "TIFF encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/tta.c b/libavcodec/tta.c index 7763ed7ffc9c8..7ea9b607a9be8 100644 --- a/libavcodec/tta.c +++ b/libavcodec/tta.c @@ -420,7 +420,6 @@ static const AVOption options[] = { static const AVClass tta_decoder_class = { .class_name = "TTA Decoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/utvideoenc.c b/libavcodec/utvideoenc.c index 1fcb6854f2322..e9c28e5704005 100644 --- a/libavcodec/utvideoenc.c +++ b/libavcodec/utvideoenc.c @@ -654,7 +654,6 @@ static const AVOption options[] = { static const AVClass utvideo_class = { .class_name = "utvideo", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/v210dec.c b/libavcodec/v210dec.c index d80fb4e7c6b76..71712056db0f8 100644 --- a/libavcodec/v210dec.c +++ b/libavcodec/v210dec.c @@ -227,7 +227,6 @@ static const AVOption v210dec_options[] = { static const AVClass v210dec_class = { .class_name = "V210 Decoder", - .item_name = av_default_item_name, .option = v210dec_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/v4l2_m2m_dec.c b/libavcodec/v4l2_m2m_dec.c index aa2d759e1ea53..8771c821eb03a 100644 --- a/libavcodec/v4l2_m2m_dec.c +++ b/libavcodec/v4l2_m2m_dec.c @@ -233,7 +233,6 @@ static const AVOption options[] = { #define M2MDEC_CLASS(NAME) \ static const AVClass v4l2_m2m_ ## NAME ## _dec_class = { \ .class_name = #NAME "_v4l2m2m_decoder", \ - .item_name = av_default_item_name, \ .option = options, \ .version = LIBAVUTIL_VERSION_INT, \ }; diff --git a/libavcodec/v4l2_m2m_enc.c b/libavcodec/v4l2_m2m_enc.c index e08db5d5d36a2..2a90098eabbc5 100644 --- a/libavcodec/v4l2_m2m_enc.c +++ b/libavcodec/v4l2_m2m_enc.c @@ -414,7 +414,6 @@ static const FFCodecDefault v4l2_m2m_defaults[] = { #define M2MENC_CLASS(NAME, OPTIONS_NAME) \ static const AVClass v4l2_m2m_ ## NAME ## _enc_class = { \ .class_name = #NAME "_v4l2m2m_encoder", \ - .item_name = av_default_item_name, \ .option = OPTIONS_NAME, \ .version = LIBAVUTIL_VERSION_INT, \ }; diff --git a/libavcodec/vaapi_encode_av1.c b/libavcodec/vaapi_encode_av1.c index 5a9ff0f798f5e..a773a2cb0bf2e 100644 --- a/libavcodec/vaapi_encode_av1.c +++ b/libavcodec/vaapi_encode_av1.c @@ -922,7 +922,6 @@ static const FFCodecDefault vaapi_encode_av1_defaults[] = { static const AVClass vaapi_encode_av1_class = { .class_name = "av1_vaapi", - .item_name = av_default_item_name, .option = vaapi_encode_av1_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/vaapi_encode_h264.c b/libavcodec/vaapi_encode_h264.c index 57b5ea2babf7c..74fbdacf747b2 100644 --- a/libavcodec/vaapi_encode_h264.c +++ b/libavcodec/vaapi_encode_h264.c @@ -1368,7 +1368,6 @@ static const FFCodecDefault vaapi_encode_h264_defaults[] = { static const AVClass vaapi_encode_h264_class = { .class_name = "h264_vaapi", - .item_name = av_default_item_name, .option = vaapi_encode_h264_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/vaapi_encode_h265.c b/libavcodec/vaapi_encode_h265.c index 239ef2359a08c..3ebb8afa9b6a5 100644 --- a/libavcodec/vaapi_encode_h265.c +++ b/libavcodec/vaapi_encode_h265.c @@ -1485,7 +1485,6 @@ static const FFCodecDefault vaapi_encode_h265_defaults[] = { static const AVClass vaapi_encode_h265_class = { .class_name = "h265_vaapi", - .item_name = av_default_item_name, .option = vaapi_encode_h265_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/vaapi_encode_mjpeg.c b/libavcodec/vaapi_encode_mjpeg.c index c17747e3a94cb..e67e940c47a1d 100644 --- a/libavcodec/vaapi_encode_mjpeg.c +++ b/libavcodec/vaapi_encode_mjpeg.c @@ -559,7 +559,6 @@ static const FFCodecDefault vaapi_encode_mjpeg_defaults[] = { static const AVClass vaapi_encode_mjpeg_class = { .class_name = "mjpeg_vaapi", - .item_name = av_default_item_name, .option = vaapi_encode_mjpeg_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/vaapi_encode_mpeg2.c b/libavcodec/vaapi_encode_mpeg2.c index d1904bf4f5a3e..f9a3ecc8d1c1e 100644 --- a/libavcodec/vaapi_encode_mpeg2.c +++ b/libavcodec/vaapi_encode_mpeg2.c @@ -682,7 +682,6 @@ static const FFCodecDefault vaapi_encode_mpeg2_defaults[] = { static const AVClass vaapi_encode_mpeg2_class = { .class_name = "mpeg2_vaapi", - .item_name = av_default_item_name, .option = vaapi_encode_mpeg2_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/vaapi_encode_vp8.c b/libavcodec/vaapi_encode_vp8.c index 8a557b967e609..ddcf20008587d 100644 --- a/libavcodec/vaapi_encode_vp8.c +++ b/libavcodec/vaapi_encode_vp8.c @@ -237,7 +237,6 @@ static const FFCodecDefault vaapi_encode_vp8_defaults[] = { static const AVClass vaapi_encode_vp8_class = { .class_name = "vp8_vaapi", - .item_name = av_default_item_name, .option = vaapi_encode_vp8_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/vaapi_encode_vp9.c b/libavcodec/vaapi_encode_vp9.c index c2a8dec71b9d8..d00e73e945bfc 100644 --- a/libavcodec/vaapi_encode_vp9.c +++ b/libavcodec/vaapi_encode_vp9.c @@ -294,7 +294,6 @@ static const FFCodecDefault vaapi_encode_vp9_defaults[] = { static const AVClass vaapi_encode_vp9_class = { .class_name = "vp9_vaapi", - .item_name = av_default_item_name, .option = vaapi_encode_vp9_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/vbnenc.c b/libavcodec/vbnenc.c index 7ce91863d7fff..258bb975d43e2 100644 --- a/libavcodec/vbnenc.c +++ b/libavcodec/vbnenc.c @@ -143,7 +143,6 @@ static const AVOption options[] = { static const AVClass vbnenc_class = { .class_name = "VBN encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/vc2enc.c b/libavcodec/vc2enc.c index d978c67a3b068..87856a95fc620 100644 --- a/libavcodec/vc2enc.c +++ b/libavcodec/vc2enc.c @@ -1207,7 +1207,6 @@ static const AVClass vc2enc_class = { .class_name = "SMPTE VC-2 encoder", .category = AV_CLASS_CATEGORY_ENCODER, .option = vc2enc_options, - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT }; diff --git a/libavcodec/videotoolboxenc.c b/libavcodec/videotoolboxenc.c index fbd33fd3f965c..15e0e1fe292e5 100644 --- a/libavcodec/videotoolboxenc.c +++ b/libavcodec/videotoolboxenc.c @@ -2905,7 +2905,6 @@ static const AVOption h264_options[] = { static const AVClass h264_videotoolbox_class = { .class_name = "h264_videotoolbox", - .item_name = av_default_item_name, .option = h264_options, .version = LIBAVUTIL_VERSION_INT, }; @@ -2941,7 +2940,6 @@ static const AVOption hevc_options[] = { static const AVClass hevc_videotoolbox_class = { .class_name = "hevc_videotoolbox", - .item_name = av_default_item_name, .option = hevc_options, .version = LIBAVUTIL_VERSION_INT, }; @@ -2980,7 +2978,6 @@ static const AVOption prores_options[] = { static const AVClass prores_videotoolbox_class = { .class_name = "prores_videotoolbox", - .item_name = av_default_item_name, .option = prores_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/vorbis_parser.c b/libavcodec/vorbis_parser.c index d2c9e647ce564..5bd862b76d874 100644 --- a/libavcodec/vorbis_parser.c +++ b/libavcodec/vorbis_parser.c @@ -36,7 +36,6 @@ static const AVClass vorbis_parser_class = { .class_name = "Vorbis parser", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/vp9_metadata_bsf.c b/libavcodec/vp9_metadata_bsf.c index 40d1b21c67afb..024b2ad94a661 100644 --- a/libavcodec/vp9_metadata_bsf.c +++ b/libavcodec/vp9_metadata_bsf.c @@ -126,7 +126,6 @@ static const AVOption vp9_metadata_options[] = { static const AVClass vp9_metadata_class = { .class_name = "vp9_metadata_bsf", - .item_name = av_default_item_name, .option = vp9_metadata_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavcodec/wavpackenc.c b/libavcodec/wavpackenc.c index 33a5dfcc89aab..e138c7f3a6ab6 100644 --- a/libavcodec/wavpackenc.c +++ b/libavcodec/wavpackenc.c @@ -2962,7 +2962,6 @@ static const AVOption options[] = { static const AVClass wavpack_encoder_class = { .class_name = "WavPack encoder", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavdevice/alsa_dec.c b/libavdevice/alsa_dec.c index b518bbdac6c57..6b4ddef1af03a 100644 --- a/libavdevice/alsa_dec.c +++ b/libavdevice/alsa_dec.c @@ -151,7 +151,6 @@ static const AVOption options[] = { static const AVClass alsa_demuxer_class = { .class_name = "ALSA indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT, diff --git a/libavdevice/alsa_enc.c b/libavdevice/alsa_enc.c index 4c7805065ea62..730005a8c6fbe 100644 --- a/libavdevice/alsa_enc.c +++ b/libavdevice/alsa_enc.c @@ -161,7 +161,6 @@ static int audio_get_device_list(AVFormatContext *h, AVDeviceInfoList *device_li static const AVClass alsa_muxer_class = { .class_name = "ALSA outdev", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_AUDIO_OUTPUT, }; diff --git a/libavdevice/android_camera.c b/libavdevice/android_camera.c index c981985f1054f..24e4a3948eb70 100644 --- a/libavdevice/android_camera.c +++ b/libavdevice/android_camera.c @@ -854,7 +854,6 @@ static const AVOption options[] = { static const AVClass android_camera_class = { .class_name = "android_camera indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT, diff --git a/libavdevice/audiotoolbox.m b/libavdevice/audiotoolbox.m index 3bd707f236014..9380f771142d8 100644 --- a/libavdevice/audiotoolbox.m +++ b/libavdevice/audiotoolbox.m @@ -293,7 +293,6 @@ static av_cold int at_write_trailer(AVFormatContext *avctx) static const AVClass at_class = { .class_name = "AudioToolbox", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_AUDIO_OUTPUT, diff --git a/libavdevice/avfoundation.m b/libavdevice/avfoundation.m index a0ef87edffe3d..6a57163eb71fe 100644 --- a/libavdevice/avfoundation.m +++ b/libavdevice/avfoundation.m @@ -1286,7 +1286,6 @@ static int avf_close(AVFormatContext *s) static const AVClass avf_class = { .class_name = "AVFoundation indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT, diff --git a/libavdevice/bktr.c b/libavdevice/bktr.c index 196637852f482..29747c48bd084 100644 --- a/libavdevice/bktr.c +++ b/libavdevice/bktr.c @@ -343,7 +343,6 @@ static const AVOption options[] = { static const AVClass bktr_class = { .class_name = "BKTR grab indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT, diff --git a/libavdevice/caca.c b/libavdevice/caca.c index 6af1649137e90..c4040b77a097f 100644 --- a/libavdevice/caca.c +++ b/libavdevice/caca.c @@ -215,7 +215,6 @@ static const AVOption options[] = { static const AVClass caca_class = { .class_name = "caca outdev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_OUTPUT, diff --git a/libavdevice/decklink_dec_c.c b/libavdevice/decklink_dec_c.c index 2159702c96bd0..b7a250dd507e2 100644 --- a/libavdevice/decklink_dec_c.c +++ b/libavdevice/decklink_dec_c.c @@ -105,7 +105,6 @@ static const AVOption options[] = { static const AVClass decklink_demuxer_class = { .class_name = "Blackmagic DeckLink indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT, diff --git a/libavdevice/decklink_enc_c.c b/libavdevice/decklink_enc_c.c index 25ffe777840d3..6d747fc66f731 100644 --- a/libavdevice/decklink_enc_c.c +++ b/libavdevice/decklink_enc_c.c @@ -67,7 +67,6 @@ static const AVOption options[] = { static const AVClass decklink_muxer_class = { .class_name = "Blackmagic DeckLink outdev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_OUTPUT, diff --git a/libavdevice/dshow.c b/libavdevice/dshow.c index 5946a72cc2600..544d7eb6dae58 100644 --- a/libavdevice/dshow.c +++ b/libavdevice/dshow.c @@ -1918,7 +1918,6 @@ static const AVOption options[] = { static const AVClass dshow_class = { .class_name = "dshow indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT, diff --git a/libavdevice/fbdev_dec.c b/libavdevice/fbdev_dec.c index 460a71d13ff63..c7a51bc406f88 100644 --- a/libavdevice/fbdev_dec.c +++ b/libavdevice/fbdev_dec.c @@ -226,7 +226,6 @@ static const AVOption options[] = { static const AVClass fbdev_class = { .class_name = "fbdev indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT, diff --git a/libavdevice/fbdev_enc.c b/libavdevice/fbdev_enc.c index 7f3e8e5935f21..d7a091f54b6a7 100644 --- a/libavdevice/fbdev_enc.c +++ b/libavdevice/fbdev_enc.c @@ -201,7 +201,6 @@ static const AVOption options[] = { static const AVClass fbdev_class = { .class_name = "fbdev outdev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_OUTPUT, diff --git a/libavdevice/gdigrab.c b/libavdevice/gdigrab.c index b2858ecd894a7..00499e47d7c71 100644 --- a/libavdevice/gdigrab.c +++ b/libavdevice/gdigrab.c @@ -670,7 +670,6 @@ static const AVOption options[] = { static const AVClass gdigrab_class = { .class_name = "GDIgrab indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT, diff --git a/libavdevice/iec61883.c b/libavdevice/iec61883.c index 7223ba2e64672..a3b6ab6f3249f 100644 --- a/libavdevice/iec61883.c +++ b/libavdevice/iec61883.c @@ -496,7 +496,6 @@ static const AVOption options[] = { static const AVClass iec61883_class = { .class_name = "iec61883 indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT, diff --git a/libavdevice/jack.c b/libavdevice/jack.c index db056d824fb41..94f0f15e06e98 100644 --- a/libavdevice/jack.c +++ b/libavdevice/jack.c @@ -335,7 +335,6 @@ static const AVOption options[] = { static const AVClass jack_indev_class = { .class_name = "JACK indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT, diff --git a/libavdevice/kmsgrab.c b/libavdevice/kmsgrab.c index ba9b306c65208..ae0dbafbfc5bc 100644 --- a/libavdevice/kmsgrab.c +++ b/libavdevice/kmsgrab.c @@ -702,7 +702,6 @@ static const AVOption options[] = { static const AVClass kmsgrab_class = { .class_name = "kmsgrab indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT, diff --git a/libavdevice/lavfi.c b/libavdevice/lavfi.c index 2bfd0b81c7937..20f15c9ceb570 100644 --- a/libavdevice/lavfi.c +++ b/libavdevice/lavfi.c @@ -487,7 +487,6 @@ static const AVOption options[] = { static const AVClass lavfi_class = { .class_name = "lavfi indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_INPUT, diff --git a/libavdevice/libcdio.c b/libavdevice/libcdio.c index 28c339564f987..5f82bdd80a5da 100644 --- a/libavdevice/libcdio.c +++ b/libavdevice/libcdio.c @@ -174,7 +174,6 @@ static const AVOption options[] = { static const AVClass libcdio_class = { .class_name = "libcdio indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT, diff --git a/libavdevice/libdc1394.c b/libavdevice/libdc1394.c index e98b88c1a2fbf..9d5668a836740 100644 --- a/libavdevice/libdc1394.c +++ b/libavdevice/libdc1394.c @@ -87,7 +87,6 @@ static const AVOption options[] = { static const AVClass libdc1394_class = { .class_name = "libdc1394 indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT, diff --git a/libavdevice/openal-dec.c b/libavdevice/openal-dec.c index 91a40ae0202af..2c0f333291a8b 100644 --- a/libavdevice/openal-dec.c +++ b/libavdevice/openal-dec.c @@ -242,7 +242,6 @@ static const AVOption options[] = { static const AVClass class = { .class_name = "openal indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT, diff --git a/libavdevice/opengl_enc.c b/libavdevice/opengl_enc.c index b2ac6eb16ad01..3d54198c93f0e 100644 --- a/libavdevice/opengl_enc.c +++ b/libavdevice/opengl_enc.c @@ -1291,7 +1291,6 @@ static const AVOption options[] = { static const AVClass opengl_class = { .class_name = "opengl outdev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_OUTPUT, diff --git a/libavdevice/oss_dec.c b/libavdevice/oss_dec.c index 2cdc4324e86e9..5907e2c6c795f 100644 --- a/libavdevice/oss_dec.c +++ b/libavdevice/oss_dec.c @@ -124,7 +124,6 @@ static const AVOption options[] = { static const AVClass oss_demuxer_class = { .class_name = "OSS indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT, diff --git a/libavdevice/oss_enc.c b/libavdevice/oss_enc.c index c125e6c0e9fb2..8da069c0d5d63 100644 --- a/libavdevice/oss_enc.c +++ b/libavdevice/oss_enc.c @@ -90,7 +90,6 @@ static int audio_write_trailer(AVFormatContext *s1) static const AVClass oss_muxer_class = { .class_name = "OSS outdev", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_AUDIO_OUTPUT, }; diff --git a/libavdevice/pulse_audio_dec.c b/libavdevice/pulse_audio_dec.c index 2545462939fa3..b9d4662250fbb 100644 --- a/libavdevice/pulse_audio_dec.c +++ b/libavdevice/pulse_audio_dec.c @@ -387,7 +387,6 @@ static const AVOption options[] = { static const AVClass pulse_demuxer_class = { .class_name = "Pulse indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT, diff --git a/libavdevice/pulse_audio_enc.c b/libavdevice/pulse_audio_enc.c index f051df3e72b06..9aff25b6dc077 100644 --- a/libavdevice/pulse_audio_enc.c +++ b/libavdevice/pulse_audio_enc.c @@ -783,7 +783,6 @@ static const AVOption options[] = { static const AVClass pulse_muxer_class = { .class_name = "PulseAudio outdev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_AUDIO_OUTPUT, diff --git a/libavdevice/sdl2.c b/libavdevice/sdl2.c index 342a253dc09a9..0091a23e19fb7 100644 --- a/libavdevice/sdl2.c +++ b/libavdevice/sdl2.c @@ -350,7 +350,6 @@ static const AVOption options[] = { static const AVClass sdl2_class = { .class_name = "sdl2 outdev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_OUTPUT, diff --git a/libavdevice/sndio_dec.c b/libavdevice/sndio_dec.c index 6059830367cf9..fdc30a96190ea 100644 --- a/libavdevice/sndio_dec.c +++ b/libavdevice/sndio_dec.c @@ -103,7 +103,6 @@ static const AVOption options[] = { static const AVClass sndio_demuxer_class = { .class_name = "sndio indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT, diff --git a/libavdevice/sndio_enc.c b/libavdevice/sndio_enc.c index 578e287a41f83..fa45ea9b4e223 100644 --- a/libavdevice/sndio_enc.c +++ b/libavdevice/sndio_enc.c @@ -82,7 +82,6 @@ static int audio_write_trailer(AVFormatContext *s1) static const AVClass sndio_muxer_class = { .class_name = "sndio outdev", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_AUDIO_OUTPUT, }; diff --git a/libavdevice/v4l2.c b/libavdevice/v4l2.c index 5e85d1a2b34e7..b7c223a56f35b 100644 --- a/libavdevice/v4l2.c +++ b/libavdevice/v4l2.c @@ -1128,7 +1128,6 @@ static const AVOption options[] = { static const AVClass v4l2_class = { .class_name = "V4L2 indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT, diff --git a/libavdevice/v4l2enc.c b/libavdevice/v4l2enc.c index 8e8f911996cd4..68e303fabff42 100644 --- a/libavdevice/v4l2enc.c +++ b/libavdevice/v4l2enc.c @@ -107,7 +107,6 @@ static int write_trailer(AVFormatContext *s1) static const AVClass v4l2_class = { .class_name = "V4L2 outdev", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_OUTPUT, }; diff --git a/libavdevice/vfwcap.c b/libavdevice/vfwcap.c index 86a40b4af440c..7bb3b598301ab 100644 --- a/libavdevice/vfwcap.c +++ b/libavdevice/vfwcap.c @@ -476,7 +476,6 @@ static const AVOption options[] = { static const AVClass vfw_class = { .class_name = "VFW indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT diff --git a/libavdevice/xcbgrab.c b/libavdevice/xcbgrab.c index 64a68ba4974d0..03f5b4e4d8a24 100644 --- a/libavdevice/xcbgrab.c +++ b/libavdevice/xcbgrab.c @@ -102,7 +102,6 @@ static const AVOption options[] = { static const AVClass xcbgrab_class = { .class_name = "xcbgrab indev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT, diff --git a/libavdevice/xv.c b/libavdevice/xv.c index cba933ef17879..5ad77e2adcca9 100644 --- a/libavdevice/xv.c +++ b/libavdevice/xv.c @@ -371,7 +371,6 @@ static const AVOption options[] = { static const AVClass xv_class = { .class_name = "xvideo outdev", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_OUTPUT, diff --git a/libavfilter/af_aresample.c b/libavfilter/af_aresample.c index f4bcc45616f37..d741a174a0612 100644 --- a/libavfilter/af_aresample.c +++ b/libavfilter/af_aresample.c @@ -351,7 +351,6 @@ static const AVOption options[] = { static const AVClass aresample_class = { .class_name = "aresample", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .child_class_iterate = resample_child_class_iterate, diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c index 68daa93e61412..9e9464c0344b4 100644 --- a/libavfilter/avfiltergraph.c +++ b/libavfilter/avfiltergraph.c @@ -60,7 +60,6 @@ static const AVOption filtergraph_options[] = { static const AVClass filtergraph_class = { .class_name = "AVFilterGraph", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .option = filtergraph_options, .category = AV_CLASS_CATEGORY_FILTER, diff --git a/libavfilter/framesync.h b/libavfilter/framesync.h index 233f50a0eb7f6..9e127581385eb 100644 --- a/libavfilter/framesync.h +++ b/libavfilter/framesync.h @@ -320,7 +320,6 @@ const AVClass *ff_framesync_child_class_iterate(void **iter); #define FRAMESYNC_DEFINE_PURE_CLASS(name, desc, func_prefix, options) \ static const AVClass name##_class = { \ .class_name = desc, \ - .item_name = av_default_item_name, \ .option = options, \ .version = LIBAVUTIL_VERSION_INT, \ .category = AV_CLASS_CATEGORY_FILTER, \ diff --git a/libavfilter/internal.h b/libavfilter/internal.h index 2dbc5def0a9e7..4e36df6189f12 100644 --- a/libavfilter/internal.h +++ b/libavfilter/internal.h @@ -311,7 +311,6 @@ int ff_request_frame(AVFilterLink *link); #define AVFILTER_DEFINE_CLASS_EXT(name, desc, options) \ static const AVClass name##_class = { \ .class_name = desc, \ - .item_name = av_default_item_name, \ .option = options, \ .version = LIBAVUTIL_VERSION_INT, \ .category = AV_CLASS_CATEGORY_FILTER, \ diff --git a/libavfilter/stack_internal.c b/libavfilter/stack_internal.c index 1ee20d66cf2df..cf1edf222e110 100644 --- a/libavfilter/stack_internal.c +++ b/libavfilter/stack_internal.c @@ -336,7 +336,6 @@ static const AVFilterPad stack_outputs[] = { #define DEFINE_STACK_FILTER(category, api, capi, filter_flags) \ static const AVClass category##_##api##_class = { \ .class_name = #category "_" #api, \ - .item_name = av_default_item_name, \ .option = category##_##api##_options, \ .version = LIBAVUTIL_VERSION_INT, \ }; \ diff --git a/libavfilter/vf_bilateral_cuda.c b/libavfilter/vf_bilateral_cuda.c index ba008b517afc3..57a73646494a8 100644 --- a/libavfilter/vf_bilateral_cuda.c +++ b/libavfilter/vf_bilateral_cuda.c @@ -435,7 +435,6 @@ static const AVOption options[] = { static const AVClass cuda_bilateral_class = { .class_name = "cudabilateral", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavfilter/vf_bwdif_cuda.c b/libavfilter/vf_bwdif_cuda.c index 418f15f9899c8..9ea7a670180c9 100644 --- a/libavfilter/vf_bwdif_cuda.c +++ b/libavfilter/vf_bwdif_cuda.c @@ -338,7 +338,6 @@ static int config_output(AVFilterLink *link) static const AVClass bwdif_cuda_class = { .class_name = "bwdif_cuda", - .item_name = av_default_item_name, .option = ff_yadif_options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_FILTER, diff --git a/libavfilter/vf_bwdif_vulkan.c b/libavfilter/vf_bwdif_vulkan.c index c51df9aa26371..15af354e99e9f 100644 --- a/libavfilter/vf_bwdif_vulkan.c +++ b/libavfilter/vf_bwdif_vulkan.c @@ -375,7 +375,6 @@ static int bwdif_vulkan_config_output(AVFilterLink *outlink) static const AVClass bwdif_vulkan_class = { .class_name = "bwdif_vulkan", - .item_name = av_default_item_name, .option = ff_yadif_options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_FILTER, diff --git a/libavfilter/vf_chromakey_cuda.c b/libavfilter/vf_chromakey_cuda.c index ac644caea7f30..dbe1ce0f90cb8 100644 --- a/libavfilter/vf_chromakey_cuda.c +++ b/libavfilter/vf_chromakey_cuda.c @@ -454,7 +454,6 @@ static const AVOption options[] = { static const AVClass cudachromakey_class = { .class_name = "cudachromakey", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavfilter/vf_colorspace_cuda.c b/libavfilter/vf_colorspace_cuda.c index 09fd4dd778cde..2f23f91d7f02c 100644 --- a/libavfilter/vf_colorspace_cuda.c +++ b/libavfilter/vf_colorspace_cuda.c @@ -392,7 +392,6 @@ static const AVOption options[] = { static const AVClass cudacolorspace_class = { .class_name = "colorspace_cuda", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavfilter/vf_deinterlace_vaapi.c b/libavfilter/vf_deinterlace_vaapi.c index f085a7c10a0bb..83662729bef90 100644 --- a/libavfilter/vf_deinterlace_vaapi.c +++ b/libavfilter/vf_deinterlace_vaapi.c @@ -392,7 +392,6 @@ static const AVOption deint_vaapi_options[] = { static const AVClass deint_vaapi_class = { .class_name = "deinterlace_vaapi", - .item_name = av_default_item_name, .option = deint_vaapi_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavfilter/vf_hwdownload.c b/libavfilter/vf_hwdownload.c index 5ef23cb5d4650..d43f03e26be02 100644 --- a/libavfilter/vf_hwdownload.c +++ b/libavfilter/vf_hwdownload.c @@ -167,7 +167,6 @@ static av_cold void hwdownload_uninit(AVFilterContext *avctx) static const AVClass hwdownload_class = { .class_name = "hwdownload", - .item_name = av_default_item_name, .option = NULL, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavfilter/vf_scale.c b/libavfilter/vf_scale.c index b45035907bdfa..b51ae9a26a702 100644 --- a/libavfilter/vf_scale.c +++ b/libavfilter/vf_scale.c @@ -1022,7 +1022,6 @@ static const AVOption scale_options[] = { static const AVClass scale_class = { .class_name = "scale(2ref)", - .item_name = av_default_item_name, .option = scale_options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_FILTER, diff --git a/libavfilter/vf_scale_cuda.c b/libavfilter/vf_scale_cuda.c index 4cd21bbf2592c..2afb165de30bd 100644 --- a/libavfilter/vf_scale_cuda.c +++ b/libavfilter/vf_scale_cuda.c @@ -603,7 +603,6 @@ static const AVOption options[] = { static const AVClass cudascale_class = { .class_name = "cudascale", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavfilter/vf_scale_npp.c b/libavfilter/vf_scale_npp.c index 3cfead82bf97f..f9b6addd0cd09 100644 --- a/libavfilter/vf_scale_npp.c +++ b/libavfilter/vf_scale_npp.c @@ -1013,7 +1013,6 @@ static const AVOption options[] = { static const AVClass nppscale_class = { .class_name = "nppscale", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_FILTER, diff --git a/libavfilter/vf_sharpen_npp.c b/libavfilter/vf_sharpen_npp.c index 0a2c5c458bed3..da4d2b1b3005e 100644 --- a/libavfilter/vf_sharpen_npp.c +++ b/libavfilter/vf_sharpen_npp.c @@ -235,7 +235,6 @@ static const AVOption options[] = { static const AVClass nppsharpen_class = { .class_name = "nppsharpen", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavfilter/vf_spp.c b/libavfilter/vf_spp.c index bb74b20e0e332..eca429e03a0ce 100644 --- a/libavfilter/vf_spp.c +++ b/libavfilter/vf_spp.c @@ -75,7 +75,6 @@ static const AVOption spp_options[] = { static const AVClass spp_class = { .class_name = "spp", - .item_name = av_default_item_name, .option = spp_options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_FILTER, diff --git a/libavfilter/vf_transpose_npp.c b/libavfilter/vf_transpose_npp.c index a7a779cc25e2e..6e22b1fc92c6e 100644 --- a/libavfilter/vf_transpose_npp.c +++ b/libavfilter/vf_transpose_npp.c @@ -440,7 +440,6 @@ static const AVOption options[] = { static const AVClass npptranspose_class = { .class_name = "npptranspose", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavfilter/vf_vpp_qsv.c b/libavfilter/vf_vpp_qsv.c index 5356103e00dbb..fdf99101861f3 100644 --- a/libavfilter/vf_vpp_qsv.c +++ b/libavfilter/vf_vpp_qsv.c @@ -824,7 +824,6 @@ static const AVFilterPad vpp_outputs[] = { #define DEFINE_QSV_FILTER(x, sn, ln, fmts) \ static const AVClass x##_class = { \ .class_name = #sn "_qsv", \ - .item_name = av_default_item_name, \ .option = x##_options, \ .version = LIBAVUTIL_VERSION_INT, \ }; \ diff --git a/libavfilter/vf_yadif.c b/libavfilter/vf_yadif.c index a5a856bf5f1bc..863a1d6ffb589 100644 --- a/libavfilter/vf_yadif.c +++ b/libavfilter/vf_yadif.c @@ -326,7 +326,6 @@ static int config_output(AVFilterLink *outlink) static const AVClass yadif_class = { .class_name = "yadif", - .item_name = av_default_item_name, .option = ff_yadif_options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_FILTER, diff --git a/libavfilter/vf_yadif_cuda.c b/libavfilter/vf_yadif_cuda.c index d777757e65667..44a284788dc1e 100644 --- a/libavfilter/vf_yadif_cuda.c +++ b/libavfilter/vf_yadif_cuda.c @@ -338,7 +338,6 @@ static int config_output(AVFilterLink *link) static const AVClass yadif_cuda_class = { .class_name = "yadif_cuda", - .item_name = av_default_item_name, .option = ff_yadif_options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_FILTER, diff --git a/libavfilter/vidstabutils.c b/libavfilter/vidstabutils.c index 56fbdbdb87071..47590dd73359d 100644 --- a/libavfilter/vidstabutils.c +++ b/libavfilter/vidstabutils.c @@ -61,7 +61,6 @@ static int vs2av_log(int type, const char *tag, const char *format, ...) VS2AVLogCtx ctx; AVClass class = { .class_name = tag, - .item_name = av_default_item_name, .option = 0, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_FILTER, diff --git a/libavformat/aadec.c b/libavformat/aadec.c index e7b048b1f960d..840afe0f1f12a 100644 --- a/libavformat/aadec.c +++ b/libavformat/aadec.c @@ -366,7 +366,6 @@ static const AVOption aa_options[] = { static const AVClass aa_class = { .class_name = "aa", - .item_name = av_default_item_name, .option = aa_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/ac4enc.c b/libavformat/ac4enc.c index aefbfc26845fe..df768892dc72e 100644 --- a/libavformat/ac4enc.c +++ b/libavformat/ac4enc.c @@ -82,7 +82,6 @@ static const AVOption ac4_options[] = { static const AVClass ac4_muxer_class = { .class_name = "AC4 muxer", - .item_name = av_default_item_name, .option = ac4_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/adtsenc.c b/libavformat/adtsenc.c index c5765cc92ee93..5ebbc641d2729 100644 --- a/libavformat/adtsenc.c +++ b/libavformat/adtsenc.c @@ -228,7 +228,6 @@ static const AVOption options[] = { static const AVClass adts_muxer_class = { .class_name = "ADTS muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/aiffenc.c b/libavformat/aiffenc.c index 11a5b18d5732b..12c871dd93d0f 100644 --- a/libavformat/aiffenc.c +++ b/libavformat/aiffenc.c @@ -280,7 +280,6 @@ static const AVOption options[] = { static const AVClass aiff_muxer_class = { .class_name = "AIFF muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/alp.c b/libavformat/alp.c index 8c6066a59c6d7..bbba769f7bdfb 100644 --- a/libavformat/alp.c +++ b/libavformat/alp.c @@ -286,7 +286,6 @@ static const AVOption alp_options[] = { static const AVClass alp_muxer_class = { .class_name = "alp", - .item_name = av_default_item_name, .option = alp_options, .version = LIBAVUTIL_VERSION_INT }; diff --git a/libavformat/apngdec.c b/libavformat/apngdec.c index 8f5f37a2b1c58..835a94e9e1ea1 100644 --- a/libavformat/apngdec.c +++ b/libavformat/apngdec.c @@ -415,7 +415,6 @@ static const AVOption options[] = { static const AVClass demuxer_class = { .class_name = "APNG demuxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEMUXER, diff --git a/libavformat/apngenc.c b/libavformat/apngenc.c index a0af916f141dc..be08c033ed78f 100644 --- a/libavformat/apngenc.c +++ b/libavformat/apngenc.c @@ -302,7 +302,6 @@ static const AVOption options[] = { static const AVClass apng_muxer_class = { .class_name = "APNG muxer", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .option = options, }; diff --git a/libavformat/aptxdec.c b/libavformat/aptxdec.c index 0637a8afde25d..e1043564af3eb 100644 --- a/libavformat/aptxdec.c +++ b/libavformat/aptxdec.c @@ -95,7 +95,6 @@ static const AVOption aptx_options[] = { static const AVClass aptx_demuxer_class = { .class_name = "aptx (hd) demuxer", - .item_name = av_default_item_name, .option = aptx_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/aqtitledec.c b/libavformat/aqtitledec.c index 6c14b23862bc4..bb977150b86d1 100644 --- a/libavformat/aqtitledec.c +++ b/libavformat/aqtitledec.c @@ -130,7 +130,6 @@ static const AVOption aqt_options[] = { static const AVClass aqt_class = { .class_name = "aqtdec", - .item_name = av_default_item_name, .option = aqt_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/argo_asf.c b/libavformat/argo_asf.c index 5f38b68b6ac87..61951c21d9207 100644 --- a/libavformat/argo_asf.c +++ b/libavformat/argo_asf.c @@ -466,7 +466,6 @@ static const AVOption argo_asf_options[] = { static const AVClass argo_asf_muxer_class = { .class_name = "argo_asf_muxer", - .item_name = av_default_item_name, .option = argo_asf_options, .version = LIBAVUTIL_VERSION_INT }; diff --git a/libavformat/argo_cvg.c b/libavformat/argo_cvg.c index 2c74200b7d827..153f746b3de42 100644 --- a/libavformat/argo_cvg.c +++ b/libavformat/argo_cvg.c @@ -396,7 +396,6 @@ static const AVOption argo_cvg_options[] = { static const AVClass argo_cvg_muxer_class = { .class_name = "argo_cvg_muxer", - .item_name = av_default_item_name, .option = argo_cvg_options, .version = LIBAVUTIL_VERSION_INT }; diff --git a/libavformat/asfdec_f.c b/libavformat/asfdec_f.c index a579c3e894b42..1c97d8b5b934a 100644 --- a/libavformat/asfdec_f.c +++ b/libavformat/asfdec_f.c @@ -125,7 +125,6 @@ static const AVOption options[] = { static const AVClass asf_class = { .class_name = "asf demuxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/asfenc.c b/libavformat/asfenc.c index 2f2d9b1babd6c..4cb59317a12de 100644 --- a/libavformat/asfenc.c +++ b/libavformat/asfenc.c @@ -1121,7 +1121,6 @@ static const AVOption asf_options[] = { static const AVClass asf_muxer_class = { .class_name = "ASF (stream) muxer", - .item_name = av_default_item_name, .option = asf_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/assenc.c b/libavformat/assenc.c index 62ea0745a42e0..60112b88bcdee 100644 --- a/libavformat/assenc.c +++ b/libavformat/assenc.c @@ -223,7 +223,6 @@ static const AVOption options[] = { static const AVClass ass_class = { .class_name = "ass muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/astenc.c b/libavformat/astenc.c index 9dd388040f9fe..259948b2768eb 100644 --- a/libavformat/astenc.c +++ b/libavformat/astenc.c @@ -190,7 +190,6 @@ static const AVOption options[] = { static const AVClass ast_muxer_class = { .class_name = "AST muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/async.c b/libavformat/async.c index e096b0bc6f4c1..283f50cf4b712 100644 --- a/libavformat/async.c +++ b/libavformat/async.c @@ -484,7 +484,6 @@ static const AVOption options[] = { static const AVClass async_context_class = { .class_name = "Async", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; @@ -586,7 +585,6 @@ static const AVOption async_test_options[] = { static const AVClass async_test_context_class = { .class_name = "Async-Test", - .item_name = av_default_item_name, .option = async_test_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/av1dec.c b/libavformat/av1dec.c index 8a0644595835b..8b74fa1af8f17 100644 --- a/libavformat/av1dec.c +++ b/libavformat/av1dec.c @@ -116,7 +116,6 @@ static const AVOption av1_options[] = { static const AVClass av1_demuxer_class = { .class_name = "AV1 Annex B/low overhead OBU demuxer", - .item_name = av_default_item_name, .option = av1_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/avidec.c b/libavformat/avidec.c index 00bd7a98a9d01..744ae64ff32b7 100644 --- a/libavformat/avidec.c +++ b/libavformat/avidec.c @@ -97,7 +97,6 @@ static const AVOption options[] = { static const AVClass demuxer_class = { .class_name = "avi", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEMUXER, diff --git a/libavformat/avienc.c b/libavformat/avienc.c index a61e5c310953c..b44ddfe0aad87 100644 --- a/libavformat/avienc.c +++ b/libavformat/avienc.c @@ -999,7 +999,6 @@ static const AVOption options[] = { static const AVClass avi_muxer_class = { .class_name = "AVI muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index 5a329ce465321..0265035087158 100644 --- a/libavformat/aviobuf.c +++ b/libavformat/aviobuf.c @@ -66,7 +66,6 @@ static const AVOption ff_avio_options[] = { const AVClass ff_avio_class = { .class_name = "AVIOContext", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .option = ff_avio_options, .child_next = ff_avio_child_next, diff --git a/libavformat/avisynth.c b/libavformat/avisynth.c index 027e8c63f6886..ba8ffde4268b5 100644 --- a/libavformat/avisynth.c +++ b/libavformat/avisynth.c @@ -1192,7 +1192,6 @@ static const AVOption avisynth_options[] = { static const AVClass avisynth_demuxer_class = { .class_name = "AviSynth demuxer", - .item_name = av_default_item_name, .option = avisynth_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/bintext.c b/libavformat/bintext.c index b6f14a03e5aaf..860e2bf784415 100644 --- a/libavformat/bintext.c +++ b/libavformat/bintext.c @@ -382,7 +382,6 @@ static const AVOption options[] = { #define CLASS(name) \ (const AVClass[1]){{ \ .class_name = name, \ - .item_name = av_default_item_name, \ .option = options, \ .version = LIBAVUTIL_VERSION_INT, \ }} diff --git a/libavformat/bluray.c b/libavformat/bluray.c index 1845551c34c46..34ea05d60353e 100644 --- a/libavformat/bluray.c +++ b/libavformat/bluray.c @@ -51,7 +51,6 @@ static const AVOption options[] = { static const AVClass bluray_context_class = { .class_name = "bluray", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/cache.c b/libavformat/cache.c index 115c2c2490c38..aba623005765b 100644 --- a/libavformat/cache.c +++ b/libavformat/cache.c @@ -327,7 +327,6 @@ static const AVOption options[] = { static const AVClass cache_context_class = { .class_name = "cache", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/cdxl.c b/libavformat/cdxl.c index 065148360ef8e..a7f5288faace1 100644 --- a/libavformat/cdxl.c +++ b/libavformat/cdxl.c @@ -252,7 +252,6 @@ static const AVOption cdxl_options[] = { static const AVClass cdxl_demuxer_class = { .class_name = "CDXL demuxer", - .item_name = av_default_item_name, .option = cdxl_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/chromaprint.c b/libavformat/chromaprint.c index 9e5fd780c1e6e..4b09b6f14fceb 100644 --- a/libavformat/chromaprint.c +++ b/libavformat/chromaprint.c @@ -172,7 +172,6 @@ static const AVOption options[] = { static const AVClass chromaprint_class = { .class_name = "chromaprint muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/codec2.c b/libavformat/codec2.c index f0f7b89253311..1d6ef2a14aa81 100644 --- a/libavformat/codec2.c +++ b/libavformat/codec2.c @@ -279,7 +279,6 @@ static const AVOption codec2raw_options[] = { static const AVClass codec2_demux_class = { .class_name = "codec2 demuxer", - .item_name = av_default_item_name, .option = codec2_options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEMUXER, @@ -287,7 +286,6 @@ static const AVClass codec2_demux_class = { static const AVClass codec2raw_demux_class = { .class_name = "codec2raw demuxer", - .item_name = av_default_item_name, .option = codec2raw_options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEMUXER, diff --git a/libavformat/concatdec.c b/libavformat/concatdec.c index ffa8ade25b9cd..5a7a063ef7dff 100644 --- a/libavformat/concatdec.c +++ b/libavformat/concatdec.c @@ -930,7 +930,6 @@ static const AVOption options[] = { static const AVClass concat_class = { .class_name = "concat demuxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/crypto.c b/libavformat/crypto.c index 75b00020bca17..d0eb7fbe5d0e8 100644 --- a/libavformat/crypto.c +++ b/libavformat/crypto.c @@ -73,7 +73,6 @@ static const AVOption options[] = { static const AVClass crypto_class = { .class_name = "crypto", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c index 1215407f3cdff..a60abe05ce269 100644 --- a/libavformat/dashdec.c +++ b/libavformat/dashdec.c @@ -2350,7 +2350,6 @@ static const AVOption dash_options[] = { static const AVClass dash_class = { .class_name = "dash", - .item_name = av_default_item_name, .option = dash_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index 2f5394c308a28..5ca1661119dec 100644 --- a/libavformat/dashenc.c +++ b/libavformat/dashenc.c @@ -2411,7 +2411,6 @@ static const AVOption options[] = { static const AVClass dash_class = { .class_name = "dash muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/dfpwmdec.c b/libavformat/dfpwmdec.c index b92b00f13ab5d..a92649ddfe978 100644 --- a/libavformat/dfpwmdec.c +++ b/libavformat/dfpwmdec.c @@ -81,7 +81,6 @@ static const AVOption dfpwm_options[] = { }; static const AVClass dfpwm_demuxer_class = { .class_name = "dfpwm demuxer", - .item_name = av_default_item_name, .option = dfpwm_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/electronicarts.c b/libavformat/electronicarts.c index e7f574aede86e..1d0c119c733e9 100644 --- a/libavformat/electronicarts.c +++ b/libavformat/electronicarts.c @@ -778,7 +778,6 @@ static const AVOption options[] = { static const AVClass ea_class = { .class_name = "ea demuxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/evcdec.c b/libavformat/evcdec.c index 5ace604db6141..2dad6c2f7a7dc 100644 --- a/libavformat/evcdec.c +++ b/libavformat/evcdec.c @@ -51,7 +51,6 @@ static const AVOption evc_options[] = { static const AVClass evc_demuxer_class = { .class_name = "EVC Annex B demuxer", - .item_name = av_default_item_name, .option = evc_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/fifo.c b/libavformat/fifo.c index 8fb4975a5c798..9d9796fd329f7 100644 --- a/libavformat/fifo.c +++ b/libavformat/fifo.c @@ -706,7 +706,6 @@ static const AVOption options[] = { static const AVClass fifo_muxer_class = { .class_name = "Fifo muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/fifo_test.c b/libavformat/fifo_test.c index 3861c4aee4247..d4f6800c5d6f5 100644 --- a/libavformat/fifo_test.c +++ b/libavformat/fifo_test.c @@ -133,7 +133,6 @@ static const AVOption options[] = { static const AVClass failing_muxer_class = { .class_name = "Fifo test muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/file.c b/libavformat/file.c index 64df7ff6fb2f3..712382c42d8f3 100644 --- a/libavformat/file.c +++ b/libavformat/file.c @@ -117,21 +117,18 @@ static const AVOption pipe_options[] = { static const AVClass file_class = { .class_name = "file", - .item_name = av_default_item_name, .option = file_options, .version = LIBAVUTIL_VERSION_INT, }; static const AVClass pipe_class = { .class_name = "pipe", - .item_name = av_default_item_name, .option = pipe_options, .version = LIBAVUTIL_VERSION_INT, }; static const AVClass fd_class = { .class_name = "fd", - .item_name = av_default_item_name, .option = pipe_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/fitsdec.c b/libavformat/fitsdec.c index e0f502e4e335e..e6a7dadbe5cf9 100644 --- a/libavformat/fitsdec.c +++ b/libavformat/fitsdec.c @@ -214,7 +214,6 @@ static const AVOption fits_options[] = { static const AVClass fits_demuxer_class = { .class_name = "FITS demuxer", - .item_name = av_default_item_name, .option = fits_options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEMUXER, diff --git a/libavformat/flacenc.c b/libavformat/flacenc.c index a8beec7750bce..e4fd87930eb1d 100644 --- a/libavformat/flacenc.c +++ b/libavformat/flacenc.c @@ -409,7 +409,6 @@ static const AVOption flacenc_options[] = { static const AVClass flac_muxer_class = { .class_name = "flac muxer", - .item_name = av_default_item_name, .option = flacenc_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c index e25b5bd16307c..639a9f84d9865 100644 --- a/libavformat/flvdec.c +++ b/libavformat/flvdec.c @@ -1407,7 +1407,6 @@ static const AVOption options[] = { static const AVClass flv_kux_class = { .class_name = "(live) flv/kux demuxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c index 874560fac1532..289489ebb1517 100644 --- a/libavformat/flvenc.c +++ b/libavformat/flvenc.c @@ -1105,7 +1105,6 @@ static const AVOption options[] = { static const AVClass flv_muxer_class = { .class_name = "flv muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/ftp.c b/libavformat/ftp.c index f9b069a59e246..23dd5da3f7f2d 100644 --- a/libavformat/ftp.c +++ b/libavformat/ftp.c @@ -92,7 +92,6 @@ static const AVOption options[] = { static const AVClass ftp_context_class = { .class_name = "ftp", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/g726.c b/libavformat/g726.c index 97580a74f8f7c..016ab70dda65c 100644 --- a/libavformat/g726.c +++ b/libavformat/g726.c @@ -69,7 +69,6 @@ static const AVOption options[] = { static const AVClass g726_demuxer_class = { .class_name = "G.726 demuxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/g729dec.c b/libavformat/g729dec.c index 9c92ea4fcf4ac..e6ecb5297a022 100644 --- a/libavformat/g729dec.c +++ b/libavformat/g729dec.c @@ -88,7 +88,6 @@ static const AVOption g729_options[] = { static const AVClass g729_demuxer_class = { .class_name = "g729 demuxer", - .item_name = av_default_item_name, .option = g729_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/gif.c b/libavformat/gif.c index 568867cc5d5bf..23ffcef0b50f7 100644 --- a/libavformat/gif.c +++ b/libavformat/gif.c @@ -200,7 +200,6 @@ static const AVOption options[] = { static const AVClass gif_muxer_class = { .class_name = "GIF muxer", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .option = options, }; diff --git a/libavformat/gifdec.c b/libavformat/gifdec.c index 32286adafe753..d22f70e4c942b 100644 --- a/libavformat/gifdec.c +++ b/libavformat/gifdec.c @@ -272,7 +272,6 @@ static const AVOption options[] = { static const AVClass demuxer_class = { .class_name = "GIF demuxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEMUXER, diff --git a/libavformat/gsmdec.c b/libavformat/gsmdec.c index 7150daa5102b9..2f1cc159f357f 100644 --- a/libavformat/gsmdec.c +++ b/libavformat/gsmdec.c @@ -97,7 +97,6 @@ static const AVOption options[] = { static const AVClass gsm_class = { .class_name = "gsm demuxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/hashenc.c b/libavformat/hashenc.c index 17ee2f7e9fb26..a7ed15dfbd3e8 100644 --- a/libavformat/hashenc.c +++ b/libavformat/hashenc.c @@ -52,7 +52,6 @@ static const AVOption hash_streamhash_options[] = { static const AVClass hash_streamhashenc_class = { .class_name = "(stream) hash muxer", - .item_name = av_default_item_name, .option = hash_streamhash_options, .version = LIBAVUTIL_VERSION_INT, }; @@ -192,7 +191,6 @@ const FFOutputFormat ff_hash_muxer = { #if CONFIG_MD5_MUXER static const AVClass md5enc_class = { .class_name = "MD5 muxer", - .item_name = av_default_item_name, .option = md5_options, .version = LIBAVUTIL_VERSION_INT, }; @@ -320,7 +318,6 @@ static int framehash_write_packet(struct AVFormatContext *s, AVPacket *pkt) #if CONFIG_FRAMEHASH_MUXER static const AVClass framehash_class = { .class_name = "frame hash muxer", - .item_name = av_default_item_name, .option = framehash_options, .version = LIBAVUTIL_VERSION_INT, }; @@ -344,7 +341,6 @@ const FFOutputFormat ff_framehash_muxer = { #if CONFIG_FRAMEMD5_MUXER static const AVClass framemd5_class = { .class_name = "frame MD5 muxer", - .item_name = av_default_item_name, .option = framemd5_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/hca.c b/libavformat/hca.c index e796512a628dd..3d36565fc1dc7 100644 --- a/libavformat/hca.c +++ b/libavformat/hca.c @@ -143,7 +143,6 @@ static const AVOption hca_options[] = { static const AVClass hca_class = { .class_name = "hca", - .item_name = av_default_item_name, .option = hca_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/hdsenc.c b/libavformat/hdsenc.c index 7062441b70646..8386d28c79d6a 100644 --- a/libavformat/hdsenc.c +++ b/libavformat/hdsenc.c @@ -563,7 +563,6 @@ static const AVOption options[] = { static const AVClass hds_class = { .class_name = "HDS muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/hls.c b/libavformat/hls.c index 61e2d67588379..a69430a457685 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -2589,7 +2589,6 @@ static const AVOption hls_options[] = { static const AVClass hls_class = { .class_name = "hls demuxer", - .item_name = av_default_item_name, .option = hls_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 7049956dd73c2..52824fce695d7 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -3183,7 +3183,6 @@ static const AVOption options[] = { static const AVClass hls_class = { .class_name = "hls muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/http.c b/libavformat/http.c index c0fe7c36d91d6..8113043ffb0e4 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -1986,7 +1986,6 @@ static int http_get_short_seek(URLContext *h) #define HTTP_CLASS(flavor) \ static const AVClass flavor ## _context_class = { \ .class_name = # flavor, \ - .item_name = av_default_item_name, \ .option = options, \ .version = LIBAVUTIL_VERSION_INT, \ } diff --git a/libavformat/icecast.c b/libavformat/icecast.c index b06c53cabd5b3..f883f38777257 100644 --- a/libavformat/icecast.c +++ b/libavformat/icecast.c @@ -207,7 +207,6 @@ static int icecast_write(URLContext *h, const uint8_t *buf, int size) static const AVClass icecast_context_class = { .class_name = "icecast", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/imfdec.c b/libavformat/imfdec.c index 818b5e590bb36..4525ed59098dd 100644 --- a/libavformat/imfdec.c +++ b/libavformat/imfdec.c @@ -1014,7 +1014,6 @@ static const AVOption imf_options[] = { static const AVClass imf_class = { .class_name = "imf", - .item_name = av_default_item_name, .option = imf_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/img2_alias_pix.c b/libavformat/img2_alias_pix.c index d0aac83924f6c..cc5a4f3b1f650 100644 --- a/libavformat/img2_alias_pix.c +++ b/libavformat/img2_alias_pix.c @@ -56,7 +56,6 @@ static int alias_pix_read_probe(const AVProbeData *p) static const AVClass image2_alias_pix_class = { .class_name = "alias_pix demuxer", - .item_name = av_default_item_name, .option = ff_img_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/img2_brender_pix.c b/libavformat/img2_brender_pix.c index 9d9a7c0819e62..50e65dda55fea 100644 --- a/libavformat/img2_brender_pix.c +++ b/libavformat/img2_brender_pix.c @@ -40,7 +40,6 @@ static int brender_read_probe(const AVProbeData *p) static const AVClass image2_brender_pix_class = { .class_name = "brender_pix demuxer", - .item_name = av_default_item_name, .option = ff_img_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/img2dec.c b/libavformat/img2dec.c index 2761cb37a4216..a719d5ff2a2eb 100644 --- a/libavformat/img2dec.c +++ b/libavformat/img2dec.c @@ -634,7 +634,6 @@ const AVOption ff_img_options[] = { static const AVClass img2_class = { .class_name = "image2 demuxer", - .item_name = av_default_item_name, .option = ff_img_options, .version = LIBAVUTIL_VERSION_INT, }; @@ -658,7 +657,6 @@ static const AVOption img2pipe_options[] = { }; static const AVClass imagepipe_class = { .class_name = "imagepipe demuxer", - .item_name = av_default_item_name, .option = img2pipe_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/img2enc.c b/libavformat/img2enc.c index 526a11e5ee0c9..acfb404c6d3e2 100644 --- a/libavformat/img2enc.c +++ b/libavformat/img2enc.c @@ -266,7 +266,6 @@ static const AVOption muxoptions[] = { #if CONFIG_IMAGE2_MUXER static const AVClass img2mux_class = { .class_name = "image2 muxer", - .item_name = av_default_item_name, .option = muxoptions, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/ipfsgateway.c b/libavformat/ipfsgateway.c index 9c0d461099f9b..879a33d818295 100644 --- a/libavformat/ipfsgateway.c +++ b/libavformat/ipfsgateway.c @@ -331,7 +331,6 @@ static const AVOption options[] = { static const AVClass ipfs_gateway_context_class = { .class_name = "IPFS Gateway", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/latmenc.c b/libavformat/latmenc.c index 8eec632c546b2..77da397c296de 100644 --- a/libavformat/latmenc.c +++ b/libavformat/latmenc.c @@ -52,7 +52,6 @@ static const AVOption options[] = { static const AVClass latm_muxer_class = { .class_name = "LATM/LOAS muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/libamqp.c b/libavformat/libamqp.c index c3b9c484ea1a2..24ad3e87f002f 100644 --- a/libavformat/libamqp.c +++ b/libavformat/libamqp.c @@ -306,7 +306,6 @@ static int amqp_proto_close(URLContext *h) static const AVClass amqp_context_class = { .class_name = "amqp", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/libgme.c b/libavformat/libgme.c index 695155c9ac615..4d045373399fb 100644 --- a/libavformat/libgme.c +++ b/libavformat/libgme.c @@ -188,7 +188,6 @@ static int probe_gme(const AVProbeData *p) static const AVClass class_gme = { .class_name = "Game Music Emu demuxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/libmodplug.c b/libavformat/libmodplug.c index 0cae13bd2ecd0..f0c5dd9f18e0e 100644 --- a/libavformat/libmodplug.c +++ b/libavformat/libmodplug.c @@ -375,7 +375,6 @@ static int modplug_probe(const AVProbeData *p) static const AVClass modplug_class = { .class_name = "ModPlug demuxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/libopenmpt.c b/libavformat/libopenmpt.c index 3ca59f506fb5c..8f46ef2415ac3 100644 --- a/libavformat/libopenmpt.c +++ b/libavformat/libopenmpt.c @@ -273,7 +273,6 @@ static int read_probe_openmpt(const AVProbeData *p) static const AVClass class_openmpt = { .class_name = "libopenmpt", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/librist.c b/libavformat/librist.c index 5f27cacd4411e..e43dad7388a02 100644 --- a/libavformat/librist.c +++ b/libavformat/librist.c @@ -252,7 +252,6 @@ static int librist_write(URLContext *h, const uint8_t *buf, int size) static const AVClass librist_class = { .class_name = "librist", - .item_name = av_default_item_name, .option = librist_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/librtmp.c b/libavformat/librtmp.c index b7e9fc81cf8a3..800d2711aafa2 100644 --- a/libavformat/librtmp.c +++ b/libavformat/librtmp.c @@ -284,7 +284,6 @@ static const AVOption options[] = { #define RTMP_CLASS(flavor)\ static const AVClass lib ## flavor ## _class = {\ .class_name = "lib" #flavor " protocol",\ - .item_name = av_default_item_name,\ .option = options,\ .version = LIBAVUTIL_VERSION_INT,\ }; diff --git a/libavformat/libsmbclient.c b/libavformat/libsmbclient.c index f81fff2dfc32f..ae51956a6f275 100644 --- a/libavformat/libsmbclient.c +++ b/libavformat/libsmbclient.c @@ -358,7 +358,6 @@ static const AVOption options[] = { static const AVClass libsmbclient_context_class = { .class_name = "libsmbc", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/libsrt.c b/libavformat/libsrt.c index cd8f5b1e7dba2..1cc7ec9f86c85 100644 --- a/libavformat/libsrt.c +++ b/libavformat/libsrt.c @@ -727,7 +727,6 @@ static int libsrt_close(URLContext *h) static const AVClass libsrt_class = { .class_name = "libsrt", - .item_name = av_default_item_name, .option = libsrt_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/libssh.c b/libavformat/libssh.c index 127faaabd36e0..6e434bf7cc849 100644 --- a/libavformat/libssh.c +++ b/libavformat/libssh.c @@ -481,7 +481,6 @@ static const AVOption options[] = { static const AVClass libssh_context_class = { .class_name = "libssh", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/libzmq.c b/libavformat/libzmq.c index 04c72ac601c02..b4b08561216ba 100644 --- a/libavformat/libzmq.c +++ b/libavformat/libzmq.c @@ -187,7 +187,6 @@ static int zmq_proto_close(URLContext *h) static const AVClass zmq_context_class = { .class_name = "zmq", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index 8f000f86be7dd..f00a854fb0e8b 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -4772,7 +4772,6 @@ static const AVOption options[] = { static const AVClass webm_dash_class = { .class_name = "WebM DASH Manifest demuxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index 1457a6890c8b8..bceefdc9b07d5 100644 --- a/libavformat/matroskaenc.c +++ b/libavformat/matroskaenc.c @@ -3516,7 +3516,6 @@ static const AVOption options[] = { static const AVClass matroska_webm_class = { .class_name = "matroska/webm muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/microdvddec.c b/libavformat/microdvddec.c index e536d12b85fa5..2d424dff4e67d 100644 --- a/libavformat/microdvddec.c +++ b/libavformat/microdvddec.c @@ -193,7 +193,6 @@ static const AVOption microdvd_options[] = { static const AVClass microdvd_class = { .class_name = "microdvddec", - .item_name = av_default_item_name, .option = microdvd_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/mov.c b/libavformat/mov.c index 30cf7a15b01f5..4f413bfbd5a67 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -9320,7 +9320,6 @@ static const AVOption mov_options[] = { static const AVClass mov_class = { .class_name = "mov,mp4,m4a,3gp,3g2,mj2", - .item_name = av_default_item_name, .option = mov_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/movenc.c b/libavformat/movenc.c index a902e4d4e761c..6b1ff408c7b1f 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -125,7 +125,6 @@ static const AVOption options[] = { static const AVClass mov_isobmff_muxer_class = { .class_name = "mov/mp4/tgp/psp/tg2/ipod/ismv/f4v muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; @@ -7924,7 +7923,6 @@ static const AVCodecTag *const codec_avif_tags_list[] = { codec_avif_tags, NULL static const AVClass mov_avif_muxer_class = { .class_name = "avif muxer", - .item_name = av_default_item_name, .option = avif_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/mp3dec.c b/libavformat/mp3dec.c index 05c13228bce12..466338f4bf04b 100644 --- a/libavformat/mp3dec.c +++ b/libavformat/mp3dec.c @@ -604,7 +604,6 @@ static const AVOption options[] = { static const AVClass demuxer_class = { .class_name = "mp3", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEMUXER, diff --git a/libavformat/mp3enc.c b/libavformat/mp3enc.c index cb250a46ca8df..cc69a4823841f 100644 --- a/libavformat/mp3enc.c +++ b/libavformat/mp3enc.c @@ -515,7 +515,6 @@ static const AVOption options[] = { static const AVClass mp3_muxer_class = { .class_name = "MP3 muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c index 781c3162d6dec..0505aed57ea57 100644 --- a/libavformat/mpeg.c +++ b/libavformat/mpeg.c @@ -1040,7 +1040,6 @@ static const AVOption options[] = { static const AVClass vobsub_demuxer_class = { .class_name = "vobsub", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/mpegenc.c b/libavformat/mpegenc.c index 12d9fb33ec159..632ed3eae673e 100644 --- a/libavformat/mpegenc.c +++ b/libavformat/mpegenc.c @@ -1298,7 +1298,6 @@ static const AVOption options[] = { static const AVClass mpeg_class = { .class_name = "mpeg/(s)vcd/vob/dvd muxer", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .option = options, }; diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index c7fd1f5d1fb3e..a3173cf38d3b2 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -209,7 +209,6 @@ static const AVOption options[] = { static const AVClass mpegts_class = { .class_name = "mpegts demuxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; @@ -228,7 +227,6 @@ static const AVOption raw_options[] = { static const AVClass mpegtsraw_class = { .class_name = "mpegtsraw demuxer", - .item_name = av_default_item_name, .option = raw_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c index 84edd418f015f..6bdd09d8a54ab 100644 --- a/libavformat/mpegtsenc.c +++ b/libavformat/mpegtsenc.c @@ -2343,7 +2343,6 @@ static const AVOption options[] = { static const AVClass mpegts_muxer_class = { .class_name = "MPEGTS muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/mpjpeg.c b/libavformat/mpjpeg.c index 81ace8e9ee1d4..07b1da84a1017 100644 --- a/libavformat/mpjpeg.c +++ b/libavformat/mpjpeg.c @@ -57,7 +57,6 @@ static const AVOption options[] = { static const AVClass mpjpeg_muxer_class = { .class_name = "mpjpeg_muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/mpjpegdec.c b/libavformat/mpjpegdec.c index 236aed716a1f2..ccec42c781401 100644 --- a/libavformat/mpjpegdec.c +++ b/libavformat/mpjpegdec.c @@ -363,7 +363,6 @@ static const AVOption mpjpeg_options[] = { static const AVClass mpjpeg_demuxer_class = { .class_name = "MPJPEG demuxer", - .item_name = av_default_item_name, .option = mpjpeg_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index e42975e7fddea..417848b3eaded 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c @@ -4308,7 +4308,6 @@ static const AVOption options[] = { static const AVClass demuxer_class = { .class_name = "mxf", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEMUXER, diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c index 53bd6aedca979..074731b07f411 100644 --- a/libavformat/mxfenc.c +++ b/libavformat/mxfenc.c @@ -3407,7 +3407,6 @@ static const AVOption mxf_options[] = { static const AVClass mxf_muxer_class = { .class_name = "MXF muxer", - .item_name = av_default_item_name, .option = mxf_options, .version = LIBAVUTIL_VERSION_INT, }; @@ -3423,7 +3422,6 @@ static const AVOption d10_options[] = { static const AVClass mxf_d10_muxer_class = { .class_name = "MXF-D10 muxer", - .item_name = av_default_item_name, .option = d10_options, .version = LIBAVUTIL_VERSION_INT, }; @@ -3439,7 +3437,6 @@ static const AVOption opatom_options[] = { static const AVClass mxf_opatom_muxer_class = { .class_name = "MXF-OPAtom muxer", - .item_name = av_default_item_name, .option = opatom_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/nutenc.c b/libavformat/nutenc.c index a5198c7ca9f11..4a96dec593b35 100644 --- a/libavformat/nutenc.c +++ b/libavformat/nutenc.c @@ -1248,7 +1248,6 @@ static const AVOption options[] = { static const AVClass class = { .class_name = "nutenc", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/oggenc.c b/libavformat/oggenc.c index 69a66f586d952..38ceb17495f81 100644 --- a/libavformat/oggenc.c +++ b/libavformat/oggenc.c @@ -97,7 +97,6 @@ static const AVOption options[] = { static const AVClass ogg_muxer_class = { .class_name = "Ogg (audio/video/Speex/Opus) muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/options.c b/libavformat/options.c index 75ec86ce052ca..e79ae221d9a64 100644 --- a/libavformat/options.c +++ b/libavformat/options.c @@ -244,7 +244,6 @@ static const AVOption stream_options[] = { static const AVClass stream_class = { .class_name = "AVStream", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .option = stream_options, }; @@ -384,7 +383,6 @@ static const AVOption stream_group_options[] = { static const AVClass stream_group_class = { .class_name = "AVStreamGroup", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .option = stream_group_options, .child_next = stream_group_child_next, diff --git a/libavformat/pcmdec.c b/libavformat/pcmdec.c index 11ba0b5c0cb23..abaa435b4417b 100644 --- a/libavformat/pcmdec.c +++ b/libavformat/pcmdec.c @@ -124,7 +124,6 @@ static const AVOption pcm_options[] = { }; static const AVClass pcm_demuxer_class = { .class_name = "pcm demuxer", - .item_name = av_default_item_name, .option = pcm_options, .version = LIBAVUTIL_VERSION_INT, }; @@ -191,7 +190,6 @@ static const AVOption sln_options[] = { static const AVClass sln_demuxer_class = { .class_name = "sln demuxer", - .item_name = av_default_item_name, .option = sln_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/prompeg.c b/libavformat/prompeg.c index 59faa824bb375..98f25df453896 100644 --- a/libavformat/prompeg.c +++ b/libavformat/prompeg.c @@ -129,7 +129,6 @@ static const AVOption options[] = { static const AVClass prompeg_class = { .class_name = "prompeg", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/rawdec.c b/libavformat/rawdec.c index 1dd7fafcf0f75..0070b0b41282b 100644 --- a/libavformat/rawdec.c +++ b/libavformat/rawdec.c @@ -126,7 +126,6 @@ static const AVOption rawvideo_options[] = { const AVClass ff_rawvideo_demuxer_class = { .class_name = "generic raw video demuxer", - .item_name = av_default_item_name, .option = rawvideo_options, .version = LIBAVUTIL_VERSION_INT, }; @@ -139,7 +138,6 @@ static const AVOption raw_options[] = { const AVClass ff_raw_demuxer_class = { .class_name = "generic raw demuxer", - .item_name = av_default_item_name, .option = raw_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/rawvideodec.c b/libavformat/rawvideodec.c index 514e4e044fea0..2b81dad86e094 100644 --- a/libavformat/rawvideodec.c +++ b/libavformat/rawvideodec.c @@ -144,7 +144,6 @@ static const AVOption rawvideo_options[] = { static const AVClass rawvideo_demuxer_class = { .class_name = "rawvideo demuxer", - .item_name = av_default_item_name, .option = rawvideo_options, .version = LIBAVUTIL_VERSION_INT, }; @@ -163,7 +162,6 @@ const AVInputFormat ff_rawvideo_demuxer = { static const AVClass bitpacked_demuxer_class = { .class_name = "bitpacked demuxer", - .item_name = av_default_item_name, .option = rawvideo_options, .version = LIBAVUTIL_VERSION_INT, }; @@ -184,7 +182,6 @@ const AVInputFormat ff_bitpacked_demuxer = { static const AVClass v210_demuxer_class = { .class_name = "v210(x) demuxer", - .item_name = av_default_item_name, .option = rawvideo_options + 1, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/rtmpcrypt.c b/libavformat/rtmpcrypt.c index a835ab263f5c9..b7b610f4e7f0d 100644 --- a/libavformat/rtmpcrypt.c +++ b/libavformat/rtmpcrypt.c @@ -320,7 +320,6 @@ static const AVOption ffrtmpcrypt_options[] = { static const AVClass ffrtmpcrypt_class = { .class_name = "ffrtmpcrypt", - .item_name = av_default_item_name, .option = ffrtmpcrypt_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/rtmphttp.c b/libavformat/rtmphttp.c index c920c19ab5b97..1f88243b003db 100644 --- a/libavformat/rtmphttp.c +++ b/libavformat/rtmphttp.c @@ -268,7 +268,6 @@ static const AVOption ffrtmphttp_options[] = { static const AVClass ffrtmphttp_class = { .class_name = "ffrtmphttp", - .item_name = av_default_item_name, .option = ffrtmphttp_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c index 98718bc6dae97..5f6dfcb2fed9a 100644 --- a/libavformat/rtmpproto.c +++ b/libavformat/rtmpproto.c @@ -3161,7 +3161,6 @@ static const AVOption rtmp_options[] = { #define RTMP_PROTOCOL_1(flavor) \ static const AVClass flavor##_class = { \ .class_name = #flavor, \ - .item_name = av_default_item_name, \ .option = rtmp_options, \ .version = LIBAVUTIL_VERSION_INT, \ }; \ diff --git a/libavformat/rtpenc.c b/libavformat/rtpenc.c index a8d296a1542f5..472cb97e00672 100644 --- a/libavformat/rtpenc.c +++ b/libavformat/rtpenc.c @@ -40,7 +40,6 @@ static const AVOption options[] = { static const AVClass rtp_muxer_class = { .class_name = "RTP muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/rtpenc_mpegts.c b/libavformat/rtpenc_mpegts.c index 0d6403a048464..c00461c8ebdf2 100644 --- a/libavformat/rtpenc_mpegts.c +++ b/libavformat/rtpenc_mpegts.c @@ -183,7 +183,6 @@ static const AVOption options[] = { static const AVClass rtp_mpegts_class = { .class_name = "rtp_mpegts muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/rtpproto.c b/libavformat/rtpproto.c index cac361047a53d..5b34271b75793 100644 --- a/libavformat/rtpproto.c +++ b/libavformat/rtpproto.c @@ -86,7 +86,6 @@ static const AVOption options[] = { static const AVClass rtp_class = { .class_name = "rtp", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 7d1d3a75d4c77..583f5338e8bc1 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -2479,7 +2479,6 @@ static int sdp_read_close(AVFormatContext *s) static const AVClass sdp_demuxer_class = { .class_name = "SDP demuxer", - .item_name = av_default_item_name, .option = sdp_options, .version = LIBAVUTIL_VERSION_INT, }; @@ -2638,7 +2637,6 @@ static int rtp_read_header(AVFormatContext *s) static const AVClass rtp_demuxer_class = { .class_name = "RTP demuxer", - .item_name = av_default_item_name, .option = rtp_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/rtspdec.c b/libavformat/rtspdec.c index bbabec7db8744..39fd92fb66656 100644 --- a/libavformat/rtspdec.c +++ b/libavformat/rtspdec.c @@ -987,7 +987,6 @@ static int rtsp_read_seek(AVFormatContext *s, int stream_index, static const AVClass rtsp_demuxer_class = { .class_name = "RTSP demuxer", - .item_name = av_default_item_name, .option = ff_rtsp_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/rtspenc.c b/libavformat/rtspenc.c index 3d444ccbfd864..96031dcdba858 100644 --- a/libavformat/rtspenc.c +++ b/libavformat/rtspenc.c @@ -38,7 +38,6 @@ static const AVClass rtsp_muxer_class = { .class_name = "RTSP muxer", - .item_name = av_default_item_name, .option = ff_rtsp_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/sbgdec.c b/libavformat/sbgdec.c index b2662ea418812..7eaebcc652278 100644 --- a/libavformat/sbgdec.c +++ b/libavformat/sbgdec.c @@ -1524,7 +1524,6 @@ static const AVOption sbg_options[] = { static const AVClass sbg_demuxer_class = { .class_name = "sbg_demuxer", - .item_name = av_default_item_name, .option = sbg_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/sctp.c b/libavformat/sctp.c index 9d9e90097e174..703937ce661c2 100644 --- a/libavformat/sctp.c +++ b/libavformat/sctp.c @@ -170,7 +170,6 @@ static const AVOption options[] = { static const AVClass sctp_class = { .class_name = "sctp", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/segment.c b/libavformat/segment.c index 2a82f39f31820..5c971140376e5 100644 --- a/libavformat/segment.c +++ b/libavformat/segment.c @@ -1084,7 +1084,6 @@ static const AVOption options[] = { static const AVClass seg_class = { .class_name = "(stream) segment muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/serdec.c b/libavformat/serdec.c index 639c899249667..ee947644e3502 100644 --- a/libavformat/serdec.c +++ b/libavformat/serdec.c @@ -127,7 +127,6 @@ static const AVOption ser_options[] = { static const AVClass ser_demuxer_class = { .class_name = "ser demuxer", - .item_name = av_default_item_name, .option = ser_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/smoothstreamingenc.c b/libavformat/smoothstreamingenc.c index 0379e9a079113..f556c144964df 100644 --- a/libavformat/smoothstreamingenc.c +++ b/libavformat/smoothstreamingenc.c @@ -635,7 +635,6 @@ static const AVOption options[] = { static const AVClass ism_class = { .class_name = "smooth streaming muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/spdifenc.c b/libavformat/spdifenc.c index ca3867462680b..6bb187a416bb9 100644 --- a/libavformat/spdifenc.c +++ b/libavformat/spdifenc.c @@ -103,7 +103,6 @@ static const AVOption options[] = { static const AVClass spdif_class = { .class_name = "spdif", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/srtpproto.c b/libavformat/srtpproto.c index 61669e05adf37..e2984bc3ee424 100644 --- a/libavformat/srtpproto.c +++ b/libavformat/srtpproto.c @@ -47,7 +47,6 @@ static const AVOption options[] = { static const AVClass srtp_context_class = { .class_name = "srtp", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/subfile.c b/libavformat/subfile.c index 633a9e3c62caf..4e2872d63ac54 100644 --- a/libavformat/subfile.c +++ b/libavformat/subfile.c @@ -44,7 +44,6 @@ static const AVOption subfile_options[] = { static const AVClass subfile_class = { .class_name = "subfile", - .item_name = av_default_item_name, .option = subfile_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/tcp.c b/libavformat/tcp.c index db41394a8450e..87a074ec18e25 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@ -69,7 +69,6 @@ static const AVOption options[] = { static const AVClass tcp_class = { .class_name = "tcp", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/tedcaptionsdec.c b/libavformat/tedcaptionsdec.c index a8aa9d9cf92a6..eea871f0ecc20 100644 --- a/libavformat/tedcaptionsdec.c +++ b/libavformat/tedcaptionsdec.c @@ -42,7 +42,6 @@ static const AVOption tedcaptions_options[] = { static const AVClass tedcaptions_demuxer_class = { .class_name = "tedcaptions_demuxer", - .item_name = av_default_item_name, .option = tedcaptions_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/tee.c b/libavformat/tee.c index cfa8346bc95f9..8f161d51ee460 100644 --- a/libavformat/tee.c +++ b/libavformat/tee.c @@ -74,7 +74,6 @@ static const AVOption options[] = { static const AVClass tee_muxer_class = { .class_name = "Tee muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/tls_gnutls.c b/libavformat/tls_gnutls.c index 2ab38a199b46b..8907819d0f2a6 100644 --- a/libavformat/tls_gnutls.c +++ b/libavformat/tls_gnutls.c @@ -294,7 +294,6 @@ static const AVOption options[] = { static const AVClass tls_class = { .class_name = "tls", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/tls_libtls.c b/libavformat/tls_libtls.c index 22858d48676b8..68a65728289a7 100644 --- a/libavformat/tls_libtls.c +++ b/libavformat/tls_libtls.c @@ -198,7 +198,6 @@ static const AVOption options[] = { static const AVClass tls_class = { .class_name = "tls", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/tls_mbedtls.c b/libavformat/tls_mbedtls.c index 8503523b6db0f..7434f0826d9b2 100644 --- a/libavformat/tls_mbedtls.c +++ b/libavformat/tls_mbedtls.c @@ -350,7 +350,6 @@ static const AVOption options[] = { static const AVClass tls_class = { .class_name = "tls", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/tls_openssl.c b/libavformat/tls_openssl.c index 8bf766c01f197..112d35f91f92a 100644 --- a/libavformat/tls_openssl.c +++ b/libavformat/tls_openssl.c @@ -380,7 +380,6 @@ static const AVOption options[] = { static const AVClass tls_class = { .class_name = "tls", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/tls_schannel.c b/libavformat/tls_schannel.c index d4959f75fa636..32c7607b8a9cc 100644 --- a/libavformat/tls_schannel.c +++ b/libavformat/tls_schannel.c @@ -602,7 +602,6 @@ static const AVOption options[] = { static const AVClass tls_class = { .class_name = "tls", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/tls_securetransport.c b/libavformat/tls_securetransport.c index f6a1a5e7b6381..7b8d03130ddff 100644 --- a/libavformat/tls_securetransport.c +++ b/libavformat/tls_securetransport.c @@ -409,7 +409,6 @@ static const AVOption options[] = { static const AVClass tls_class = { .class_name = "tls", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/tty.c b/libavformat/tty.c index fbea3196fadc0..62f570636e2ab 100644 --- a/libavformat/tty.c +++ b/libavformat/tty.c @@ -173,7 +173,6 @@ static const AVOption options[] = { static const AVClass tty_demuxer_class = { .class_name = "TTY demuxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/udp.c b/libavformat/udp.c index d9514f5026789..ecac0ef40b6dd 100644 --- a/libavformat/udp.c +++ b/libavformat/udp.c @@ -144,14 +144,12 @@ static const AVOption options[] = { static const AVClass udp_class = { .class_name = "udp", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; static const AVClass udplite_context_class = { .class_name = "udplite", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/unix.c b/libavformat/unix.c index e668744580f3e..31a01efeb52d6 100644 --- a/libavformat/unix.c +++ b/libavformat/unix.c @@ -55,7 +55,6 @@ static const AVOption unix_options[] = { static const AVClass unix_class = { .class_name = "unix", - .item_name = av_default_item_name, .option = unix_options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/vapoursynth.c b/libavformat/vapoursynth.c index b79ecfcf1be54..b8778a7398f68 100644 --- a/libavformat/vapoursynth.c +++ b/libavformat/vapoursynth.c @@ -475,7 +475,6 @@ static av_cold int probe_vs(const AVProbeData *p) static const AVClass class_vs = { .class_name = "VapourSynth demuxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/wavdec.c b/libavformat/wavdec.c index 0c6629b157450..7066609365c50 100644 --- a/libavformat/wavdec.c +++ b/libavformat/wavdec.c @@ -824,7 +824,6 @@ static int wav_read_seek(AVFormatContext *s, static const AVClass wav_demuxer_class = { .class_name = "WAV demuxer", - .item_name = av_default_item_name, .option = demux_options, .version = LIBAVUTIL_VERSION_INT, }; @@ -987,7 +986,6 @@ static int w64_read_header(AVFormatContext *s) static const AVClass w64_demuxer_class = { .class_name = "W64 demuxer", - .item_name = av_default_item_name, .option = &demux_options[W64_DEMUXER_OPTIONS_OFFSET], .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/wavenc.c b/libavformat/wavenc.c index 82acb9ef0f1d6..34f4640e91366 100644 --- a/libavformat/wavenc.c +++ b/libavformat/wavenc.c @@ -503,7 +503,6 @@ static const AVOption options[] = { static const AVClass wav_muxer_class = { .class_name = "WAV muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/webm_chunk.c b/libavformat/webm_chunk.c index 494a83f5078c0..0ce0c2b630aad 100644 --- a/libavformat/webm_chunk.c +++ b/libavformat/webm_chunk.c @@ -287,7 +287,6 @@ static const AVOption options[] = { static const AVClass webm_chunk_class = { .class_name = "WebM Chunk Muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/webmdashenc.c b/libavformat/webmdashenc.c index 31ea3c6e8c461..a8c8472b70076 100644 --- a/libavformat/webmdashenc.c +++ b/libavformat/webmdashenc.c @@ -537,7 +537,6 @@ static const AVOption options[] = { static const AVClass webm_dash_class = { .class_name = "WebM DASH Manifest muxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavformat/webpenc.c b/libavformat/webpenc.c index ea7a3219757e4..9d1bd917f5336 100644 --- a/libavformat/webpenc.c +++ b/libavformat/webpenc.c @@ -220,7 +220,6 @@ static const AVOption options[] = { static const AVClass webp_muxer_class = { .class_name = "WebP muxer", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .option = options, }; diff --git a/libavformat/webvttdec.c b/libavformat/webvttdec.c index 0b2fc7716814a..d6ba04db44d9a 100644 --- a/libavformat/webvttdec.c +++ b/libavformat/webvttdec.c @@ -205,7 +205,6 @@ static const AVOption options[] = { static const AVClass webvtt_demuxer_class = { .class_name = "WebVTT demuxer", - .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavutil/cpu.c b/libavutil/cpu.c index 48d195168c171..374b53d3bb0de 100644 --- a/libavutil/cpu.c +++ b/libavutil/cpu.c @@ -197,7 +197,6 @@ int av_parse_cpu_caps(unsigned *flags, const char *s) }; static const AVClass class = { .class_name = "cpuflags", - .item_name = av_default_item_name, .option = cpuflags_opts, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavutil/eval.c b/libavutil/eval.c index d0bada9b3181e..bad9e4ecb8d07 100644 --- a/libavutil/eval.c +++ b/libavutil/eval.c @@ -59,7 +59,6 @@ typedef struct Parser { static const AVClass eval_class = { .class_name = "Eval", - .item_name = av_default_item_name, .option = NULL, .version = LIBAVUTIL_VERSION_INT, .log_level_offset_offset = offsetof(Parser, log_offset), diff --git a/libavutil/file.c b/libavutil/file.c index cc17885bcc788..4855b919639f6 100644 --- a/libavutil/file.c +++ b/libavutil/file.c @@ -45,7 +45,6 @@ typedef struct FileLogContext { static const AVClass file_log_ctx_class = { .class_name = "FILE", - .item_name = av_default_item_name, .option = NULL, .version = LIBAVUTIL_VERSION_INT, .log_level_offset_offset = offsetof(FileLogContext, log_offset), diff --git a/libavutil/file_open.c b/libavutil/file_open.c index 9aa4e4ac61d73..5f6f17a881086 100644 --- a/libavutil/file_open.c +++ b/libavutil/file_open.c @@ -101,7 +101,6 @@ typedef struct FileLogContext { static const AVClass file_log_ctx_class = { .class_name = "TEMPFILE", - .item_name = av_default_item_name, .option = NULL, .version = LIBAVUTIL_VERSION_INT, .log_level_offset_offset = offsetof(FileLogContext, log_offset), diff --git a/libavutil/hwcontext.c b/libavutil/hwcontext.c index e23bad230fff5..430cc9ffef1bd 100644 --- a/libavutil/hwcontext.c +++ b/libavutil/hwcontext.c @@ -120,7 +120,6 @@ enum AVHWDeviceType av_hwdevice_iterate_types(enum AVHWDeviceType prev) static const AVClass hwdevice_ctx_class = { .class_name = "AVHWDeviceContext", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, }; @@ -222,7 +221,6 @@ int av_hwdevice_ctx_init(AVBufferRef *ref) static const AVClass hwframe_ctx_class = { .class_name = "AVHWFramesContext", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, }; diff --git a/libavutil/iamf.c b/libavutil/iamf.c index 62b6051049695..e648f6df2b773 100644 --- a/libavutil/iamf.c +++ b/libavutil/iamf.c @@ -75,7 +75,6 @@ static const AVOption mix_gain_options[] = { static const AVClass mix_gain_class = { .class_name = "AVIAMFSubmixElement", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .option = mix_gain_options, }; @@ -90,7 +89,6 @@ static const AVOption demixing_info_options[] = { static const AVClass demixing_info_class = { .class_name = "AVIAMFDemixingInfo", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .option = demixing_info_options, }; @@ -104,7 +102,6 @@ static const AVOption recon_gain_options[] = { static const AVClass recon_gain_class = { .class_name = "AVIAMFReconGain", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .option = recon_gain_options, }; @@ -145,7 +142,6 @@ static const AVClass *param_definition_child_iterate(void **opaque) static const AVClass param_definition_class = { .class_name = "AVIAMFParamDefinition", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .option = param_definition_options, .child_class_iterate = param_definition_child_iterate, @@ -274,7 +270,6 @@ static const AVOption layer_options[] = { static const AVClass layer_class = { .class_name = "AVIAMFLayer", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .option = layer_options, }; @@ -308,7 +303,6 @@ static const AVClass *audio_element_child_iterate(void **opaque) static const AVClass audio_element_class = { .class_name = "AVIAMFAudioElement", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .option = audio_element_options, .child_class_iterate = audio_element_child_iterate, @@ -395,7 +389,6 @@ static const AVClass *submix_element_child_iterate(void **opaque) static const AVClass element_class = { .class_name = "AVIAMFSubmixElement", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .option = submix_element_options, .child_next = submix_element_child_next, @@ -425,7 +418,6 @@ static const AVOption submix_layout_options[] = { static const AVClass layout_class = { .class_name = "AVIAMFSubmixLayout", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .option = submix_layout_options, }; @@ -474,7 +466,6 @@ static const AVClass *submix_presentation_child_iterate(void **opaque) static const AVClass submix_class = { .class_name = "AVIAMFSubmix", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .option = submix_presentation_options, .child_next = submix_presentation_child_next, @@ -506,7 +497,6 @@ static const AVClass *mix_presentation_child_iterate(void **opaque) static const AVClass mix_presentation_class = { .class_name = "AVIAMFMixPresentation", - .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .option = mix_presentation_options, .child_class_iterate = mix_presentation_child_iterate, diff --git a/libavutil/imgutils.c b/libavutil/imgutils.c index aae40ba59a9ab..ff9ff07961c99 100644 --- a/libavutil/imgutils.c +++ b/libavutil/imgutils.c @@ -279,7 +279,6 @@ typedef struct ImgUtils { static const AVClass imgutils_class = { .class_name = "IMGUTILS", - .item_name = av_default_item_name, .option = NULL, .version = LIBAVUTIL_VERSION_INT, .log_level_offset_offset = offsetof(ImgUtils, log_offset), diff --git a/libavutil/opt.h b/libavutil/opt.h index 461b5d3b6bb2a..b0d46650d957e 100644 --- a/libavutil/opt.h +++ b/libavutil/opt.h @@ -77,7 +77,6 @@ * * static const AVClass test_class = { * .class_name = "test class", - * .item_name = av_default_item_name, * .option = test_options, * .version = LIBAVUTIL_VERSION_INT, * }; @@ -131,7 +130,6 @@ * }; * static const AVClass child_class = { * .class_name = "child class", - * .item_name = av_default_item_name, * .option = child_opts, * .version = LIBAVUTIL_VERSION_INT, * };