mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-03 14:32:16 +02:00
all: Don't set AVClass.item_name to its default value
Unnecessary since acf63d5350adeae551d412db699f8ca03f7e76b9; also avoids relocations. Reviewed-by: Anton Khirnov <anton@khirnov.net> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
46775e64f8
commit
0c6203c97a
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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, \
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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, \
|
||||
}; \
|
||||
|
@ -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, \
|
||||
}; \
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user