FFmpeg/tests/fate/vvc.mak
Frank Plowman 6df0c5f9f4 lavc/vvc: Remove experimental flag
This reverts commit 110d8549d5.

I have been working through fixing bugs, particularly crashes I've
found using a fuzzer, in the VVC decoder for the past few months.
While I won't claim it is now bug-free, it is considerably more
resilient than it was and I think in a position to have the
experimental flag removed for release 7.1.

Additionally, most of the Main 10 features of VVC which were missing
version of the decoder released in 7.0 have now been implemented.
This includes the most major missing features: IBC, subpictures and RPR.

Signed-off-by: Frank Plowman <post@frankplowman.com>
2024-09-06 22:14:52 +08:00

54 lines
1.7 KiB
Makefile

VVC_SAMPLES_8BIT = \
CodingToolsSets_A_2 \
VVC_SAMPLES_10BIT = \
APSALF_A_2 \
APSLMCS_D_1 \
APSMULT_A_4 \
AUD_A_3 \
BUMP_A_2 \
DCI_A_3 \
HRD_A_3 \
IBC_B_Tencent_2 \
PHSH_B_1 \
POC_A_1 \
PPS_B_1 \
RAP_A_1 \
RPR_A_4 \
SAO_A_3 \
SCALING_A_1 \
SLICES_A_3 \
SPS_B_1 \
STILL_B_1 \
SUBPIC_A_3 \
SUBPIC_C_ERICSSON_1 \
TILE_A_2 \
WP_A_3 \
WPP_A_3 \
WRAP_A_4 \
VVC_SAMPLES_444_10BIT = \
CROP_B_4 \
# not tested:
# BOUNDARY_A_3 (too big)
# OPI_B_3 (Inter layer ref support needed)
# VPS_A_3 (Inter layer ref support needed)
FATE_VVC_VARS := 8BIT 10BIT 444_10BIT
$(foreach VAR,$(FATE_VVC_VARS), $(eval VVC_TESTS_$(VAR) := $(addprefix fate-vvc-conformance-, $(VVC_SAMPLES_$(VAR)))))
$(VVC_TESTS_8BIT): SCALE_OPTS := -pix_fmt yuv420p
$(VVC_TESTS_10BIT): SCALE_OPTS := -pix_fmt yuv420p10le -vf scale
$(VVC_TESTS_444_10BIT): SCALE_OPTS := -pix_fmt yuv444p10le -vf scale
fate-vvc-conformance-%: CMD = framecrc -c:v vvc -i $(TARGET_SAMPLES)/vvc-conformance/$(subst fate-vvc-conformance-,,$(@)).bit $(SCALE_OPTS)
FATE_VVC-$(call FRAMECRC, VVC, VVC, VVC_PARSER) += $(VVC_TESTS_8BIT)
FATE_VVC-$(call FRAMECRC, VVC, VVC, VVC_PARSER SCALE_FILTER) += \
$(VVC_TESTS_10BIT) \
$(VVC_TESTS_444_10BIT) \
FATE_SAMPLES_FFMPEG += $(FATE_VVC-yes)
fate-vvc: $(FATE_VVC-yes)