Skip to content

Commit

Permalink
FFmpeg: отключаем ff_vvc_decoder и ff_vvc_parser, т.к. не используются.
Browse files Browse the repository at this point in the history
  • Loading branch information
v0lt committed Jun 25, 2024
1 parent 51b4493 commit 70640d8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/ExtLib/ffmpeg/config_components.h
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@
#define CONFIG_VP9_V4L2M2M_DECODER 0
#define CONFIG_VQA_DECODER 0
#define CONFIG_VQC_DECODER 0
#define CONFIG_VVC_DECODER 1
#define CONFIG_VVC_DECODER 0
#define CONFIG_WBMP_DECODER 0
#define CONFIG_WEBP_DECODER 0
#define CONFIG_WCMV_DECODER 0
Expand Down Expand Up @@ -1008,7 +1008,7 @@
#define CONFIG_VP3_PARSER 1
#define CONFIG_VP8_PARSER 0
#define CONFIG_VP9_PARSER 0
#define CONFIG_VVC_PARSER 1
#define CONFIG_VVC_PARSER 0
#define CONFIG_WEBP_PARSER 0
#define CONFIG_XBM_PARSER 0
#define CONFIG_XMA_PARSER 0
Expand Down
1 change: 0 additions & 1 deletion src/ExtLib/ffmpeg/libavcodec/codec_list.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ static const FFCodec * const codec_list[] = {
&ff_vp7_decoder,
&ff_vp8_decoder,
&ff_vp9_decoder,
&ff_vvc_decoder,
&ff_wmv1_decoder,
&ff_wmv2_decoder,
&ff_wmv3_decoder,
Expand Down
1 change: 0 additions & 1 deletion src/ExtLib/ffmpeg/libavcodec/parser_list.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,5 @@ static const AVCodecParser * const parser_list[] = {
&ff_vp3_parser,
&ff_vp8_parser,
&ff_vp9_parser,
&ff_vvc_parser,
NULL
};

0 comments on commit 70640d8

Please sign in to comment.