mirror of
https://github.com/librempeg/librempeg
synced 2024-11-21 16:44:05 +00:00
fate/pixfmts: test conversion of high bitdepth formats
Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
34b7375ae4
commit
9a560fc80f
@ -503,6 +503,18 @@ pixfmt_conversion(){
|
||||
$ENC_OPTS -f rawvideo -s 352x288 -pix_fmt yuv444p -color_range mpeg
|
||||
}
|
||||
|
||||
pixfmt_conversion_ext(){
|
||||
prefix=$1
|
||||
color_range="${test#pixfmt-}"
|
||||
color_range=${color_range%-*}
|
||||
conversion="${test#pixfmt-$color_range-}"
|
||||
outdir="tests/data/pixfmt"
|
||||
file=${outdir}/${color_range}-${conversion}.yuv
|
||||
cleanfiles="$cleanfiles $file"
|
||||
do_avconv $file $DEC_OPTS -lavfi ${prefix}testsrc=s=352x288,format=${color_range},scale,format=$conversion \
|
||||
$ENC_OPTS -t 1 -f rawvideo -s 352x288 -pix_fmt ${color_range}le -color_range mpeg
|
||||
}
|
||||
|
||||
pixdesc(){
|
||||
pix_fmt=${test#filter-pixdesc-}
|
||||
label=${test#filter-}
|
||||
|
@ -25,5 +25,108 @@ $(FATE_PIXFMT): CMD = pixfmt_conversion
|
||||
$(FATE_PIXFMT): REF = $(SRC_PATH)/tests/ref/pixfmt/$(@:fate-pixfmt-%=%)
|
||||
$(FATE_PIXFMT): $(VREF)
|
||||
|
||||
FATE_AVCONV += $(FATE_PIXFMT)
|
||||
fate-pixfmt: $(FATE_PIXFMT)
|
||||
PIXFMT_10_LIST = gray10le \
|
||||
gray10be \
|
||||
yuv420p10le \
|
||||
yuv420p10be \
|
||||
yuv422p10le \
|
||||
yuv422p10be \
|
||||
yuv440p10le \
|
||||
yuv440p10be \
|
||||
yuv444p10le \
|
||||
yuv444p10be \
|
||||
y210le \
|
||||
p010le \
|
||||
p010be \
|
||||
p210le \
|
||||
p210be \
|
||||
p410le \
|
||||
p410be \
|
||||
v30xle \
|
||||
xv30le \
|
||||
x2rgb10le \
|
||||
x2bgr10le \
|
||||
gbrp10le \
|
||||
gbrp10be \
|
||||
|
||||
FATE_PIXFMT_10-YUV-$(call ALLYES, SCALE_FILTER YUVTESTSRC_FILTER LAVFI_INDEV) += $(PIXFMT_10_LIST)
|
||||
FATE_PIXFMT_10-RGB-$(call ALLYES, SCALE_FILTER RGBTESTSRC_FILTER LAVFI_INDEV) += $(PIXFMT_10_LIST)
|
||||
|
||||
FATE_PIXFMT_10-YUV := $(FATE_PIXFMT_10-YUV-yes:%=fate-pixfmt-yuv444p10-%)
|
||||
FATE_PIXFMT_10-RGB := $(FATE_PIXFMT_10-RGB-yes:%=fate-pixfmt-gbrp10-%)
|
||||
|
||||
$(FATE_PIXFMT_10-YUV): CMD = pixfmt_conversion_ext "yuv"
|
||||
$(FATE_PIXFMT_10-RGB): CMD = pixfmt_conversion_ext "rgb"
|
||||
|
||||
FATE_PIXFMT_10 := $(FATE_PIXFMT_10-YUV) $(FATE_PIXFMT_10-RGB)
|
||||
$(FATE_PIXFMT_10): REF = $(SRC_PATH)/tests/ref/pixfmt/$(@:fate-pixfmt-%=%)
|
||||
|
||||
PIXFMT_12_LIST = gray12le \
|
||||
gray12be \
|
||||
yuv420p12le \
|
||||
yuv420p12be \
|
||||
yuv422p12le \
|
||||
yuv422p12be \
|
||||
yuv440p12le \
|
||||
yuv440p12be \
|
||||
yuv444p12le \
|
||||
yuv444p12be \
|
||||
y212le \
|
||||
p012le \
|
||||
p012be \
|
||||
p212le \
|
||||
p212be \
|
||||
p412le \
|
||||
p412be \
|
||||
xv36le \
|
||||
xv36be \
|
||||
gbrp12le \
|
||||
gbrp12be \
|
||||
|
||||
FATE_PIXFMT_12-YUV-$(call ALLYES, SCALE_FILTER YUVTESTSRC_FILTER LAVFI_INDEV) += $(PIXFMT_12_LIST)
|
||||
FATE_PIXFMT_12-RGB-$(call ALLYES, SCALE_FILTER RGBTESTSRC_FILTER LAVFI_INDEV) += $(PIXFMT_12_LIST)
|
||||
|
||||
FATE_PIXFMT_12-YUV := $(FATE_PIXFMT_12-YUV-yes:%=fate-pixfmt-yuv444p12-%)
|
||||
FATE_PIXFMT_12-RGB := $(FATE_PIXFMT_12-RGB-yes:%=fate-pixfmt-gbrp12-%)
|
||||
|
||||
$(FATE_PIXFMT_12-YUV): CMD = pixfmt_conversion_ext "yuv"
|
||||
$(FATE_PIXFMT_12-RGB): CMD = pixfmt_conversion_ext "rgb"
|
||||
|
||||
FATE_PIXFMT_12 := $(FATE_PIXFMT_12-YUV) $(FATE_PIXFMT_12-RGB)
|
||||
$(FATE_PIXFMT_12): REF = $(SRC_PATH)/tests/ref/pixfmt/$(@:fate-pixfmt-%=%)
|
||||
|
||||
PIXFMT_16_LIST = gray16le \
|
||||
gray16be \
|
||||
yuv420p16le \
|
||||
yuv420p16be \
|
||||
yuv422p16le \
|
||||
yuv422p16be \
|
||||
yuv444p16le \
|
||||
yuv444p16be \
|
||||
y216le \
|
||||
p016le \
|
||||
p016be \
|
||||
p216le \
|
||||
p216be \
|
||||
p416le \
|
||||
p416be \
|
||||
xv48le \
|
||||
xv48be \
|
||||
rgb48 \
|
||||
gbrp16le \
|
||||
gbrp16be \
|
||||
|
||||
FATE_PIXFMT_16-YUV-$(call ALLYES, SCALE_FILTER YUVTESTSRC_FILTER LAVFI_INDEV) += $(PIXFMT_16_LIST)
|
||||
FATE_PIXFMT_16-RGB-$(call ALLYES, SCALE_FILTER RGBTESTSRC_FILTER LAVFI_INDEV) += $(PIXFMT_16_LIST)
|
||||
|
||||
FATE_PIXFMT_16-YUV := $(FATE_PIXFMT_16-YUV-yes:%=fate-pixfmt-yuv444p16-%)
|
||||
FATE_PIXFMT_16-RGB := $(FATE_PIXFMT_16-RGB-yes:%=fate-pixfmt-gbrp16-%)
|
||||
|
||||
$(FATE_PIXFMT_16-YUV): CMD = pixfmt_conversion_ext "yuv"
|
||||
$(FATE_PIXFMT_16-RGB): CMD = pixfmt_conversion_ext "rgb"
|
||||
|
||||
FATE_PIXFMT_16 := $(FATE_PIXFMT_16-YUV) $(FATE_PIXFMT_16-RGB)
|
||||
$(FATE_PIXFMT_16): REF = $(SRC_PATH)/tests/ref/pixfmt/$(@:fate-pixfmt-%=%)
|
||||
|
||||
FATE_AVCONV += $(FATE_PIXFMT) $(FATE_PIXFMT_8) $(FATE_PIXFMT_10) $(FATE_PIXFMT_12) $(FATE_PIXFMT_16)
|
||||
fate-pixfmt: $(FATE_PIXFMT) $(FATE_PIXFMT_8) $(FATE_PIXFMT_10) $(FATE_PIXFMT_12) $(FATE_PIXFMT_16)
|
||||
|
2
tests/ref/pixfmt/gbrp10-gbrp10be
Normal file
2
tests/ref/pixfmt/gbrp10-gbrp10be
Normal file
@ -0,0 +1,2 @@
|
||||
1f9cc212a4081b6e35811df461b18fec *tests/data/pixfmt/gbrp10-gbrp10be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-gbrp10be.yuv
|
2
tests/ref/pixfmt/gbrp10-gbrp10le
Normal file
2
tests/ref/pixfmt/gbrp10-gbrp10le
Normal file
@ -0,0 +1,2 @@
|
||||
1f9cc212a4081b6e35811df461b18fec *tests/data/pixfmt/gbrp10-gbrp10le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-gbrp10le.yuv
|
2
tests/ref/pixfmt/gbrp10-gray10be
Normal file
2
tests/ref/pixfmt/gbrp10-gray10be
Normal file
@ -0,0 +1,2 @@
|
||||
3d81484df522da621f2735c53bc3856b *tests/data/pixfmt/gbrp10-gray10be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-gray10be.yuv
|
2
tests/ref/pixfmt/gbrp10-gray10le
Normal file
2
tests/ref/pixfmt/gbrp10-gray10le
Normal file
@ -0,0 +1,2 @@
|
||||
3d81484df522da621f2735c53bc3856b *tests/data/pixfmt/gbrp10-gray10le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-gray10le.yuv
|
2
tests/ref/pixfmt/gbrp10-p010be
Normal file
2
tests/ref/pixfmt/gbrp10-p010be
Normal file
@ -0,0 +1,2 @@
|
||||
361fa84042e8618d322a3c1cbd0a5824 *tests/data/pixfmt/gbrp10-p010be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-p010be.yuv
|
2
tests/ref/pixfmt/gbrp10-p010le
Normal file
2
tests/ref/pixfmt/gbrp10-p010le
Normal file
@ -0,0 +1,2 @@
|
||||
361fa84042e8618d322a3c1cbd0a5824 *tests/data/pixfmt/gbrp10-p010le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-p010le.yuv
|
2
tests/ref/pixfmt/gbrp10-p210be
Normal file
2
tests/ref/pixfmt/gbrp10-p210be
Normal file
@ -0,0 +1,2 @@
|
||||
d3ae9cee6bae0df1bf830014bd07d2ed *tests/data/pixfmt/gbrp10-p210be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-p210be.yuv
|
2
tests/ref/pixfmt/gbrp10-p210le
Normal file
2
tests/ref/pixfmt/gbrp10-p210le
Normal file
@ -0,0 +1,2 @@
|
||||
d3ae9cee6bae0df1bf830014bd07d2ed *tests/data/pixfmt/gbrp10-p210le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-p210le.yuv
|
2
tests/ref/pixfmt/gbrp10-p410be
Normal file
2
tests/ref/pixfmt/gbrp10-p410be
Normal file
@ -0,0 +1,2 @@
|
||||
1015f3ddc2979b399cc7d260d53bca21 *tests/data/pixfmt/gbrp10-p410be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-p410be.yuv
|
2
tests/ref/pixfmt/gbrp10-p410le
Normal file
2
tests/ref/pixfmt/gbrp10-p410le
Normal file
@ -0,0 +1,2 @@
|
||||
1015f3ddc2979b399cc7d260d53bca21 *tests/data/pixfmt/gbrp10-p410le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-p410le.yuv
|
2
tests/ref/pixfmt/gbrp10-v30xle
Normal file
2
tests/ref/pixfmt/gbrp10-v30xle
Normal file
@ -0,0 +1,2 @@
|
||||
1015f3ddc2979b399cc7d260d53bca21 *tests/data/pixfmt/gbrp10-v30xle.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-v30xle.yuv
|
2
tests/ref/pixfmt/gbrp10-x2bgr10le
Normal file
2
tests/ref/pixfmt/gbrp10-x2bgr10le
Normal file
@ -0,0 +1,2 @@
|
||||
909448714837e324484d85f3da37e2ba *tests/data/pixfmt/gbrp10-x2bgr10le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-x2bgr10le.yuv
|
2
tests/ref/pixfmt/gbrp10-x2rgb10le
Normal file
2
tests/ref/pixfmt/gbrp10-x2rgb10le
Normal file
@ -0,0 +1,2 @@
|
||||
909448714837e324484d85f3da37e2ba *tests/data/pixfmt/gbrp10-x2rgb10le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-x2rgb10le.yuv
|
2
tests/ref/pixfmt/gbrp10-xv30le
Normal file
2
tests/ref/pixfmt/gbrp10-xv30le
Normal file
@ -0,0 +1,2 @@
|
||||
1015f3ddc2979b399cc7d260d53bca21 *tests/data/pixfmt/gbrp10-xv30le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-xv30le.yuv
|
2
tests/ref/pixfmt/gbrp10-y210le
Normal file
2
tests/ref/pixfmt/gbrp10-y210le
Normal file
@ -0,0 +1,2 @@
|
||||
d3ae9cee6bae0df1bf830014bd07d2ed *tests/data/pixfmt/gbrp10-y210le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-y210le.yuv
|
2
tests/ref/pixfmt/gbrp10-yuv420p10be
Normal file
2
tests/ref/pixfmt/gbrp10-yuv420p10be
Normal file
@ -0,0 +1,2 @@
|
||||
361fa84042e8618d322a3c1cbd0a5824 *tests/data/pixfmt/gbrp10-yuv420p10be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-yuv420p10be.yuv
|
2
tests/ref/pixfmt/gbrp10-yuv420p10le
Normal file
2
tests/ref/pixfmt/gbrp10-yuv420p10le
Normal file
@ -0,0 +1,2 @@
|
||||
361fa84042e8618d322a3c1cbd0a5824 *tests/data/pixfmt/gbrp10-yuv420p10le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-yuv420p10le.yuv
|
2
tests/ref/pixfmt/gbrp10-yuv422p10be
Normal file
2
tests/ref/pixfmt/gbrp10-yuv422p10be
Normal file
@ -0,0 +1,2 @@
|
||||
d3ae9cee6bae0df1bf830014bd07d2ed *tests/data/pixfmt/gbrp10-yuv422p10be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-yuv422p10be.yuv
|
2
tests/ref/pixfmt/gbrp10-yuv422p10le
Normal file
2
tests/ref/pixfmt/gbrp10-yuv422p10le
Normal file
@ -0,0 +1,2 @@
|
||||
d3ae9cee6bae0df1bf830014bd07d2ed *tests/data/pixfmt/gbrp10-yuv422p10le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-yuv422p10le.yuv
|
2
tests/ref/pixfmt/gbrp10-yuv440p10be
Normal file
2
tests/ref/pixfmt/gbrp10-yuv440p10be
Normal file
@ -0,0 +1,2 @@
|
||||
81cd02c0a12bc263aea2a79068dcb971 *tests/data/pixfmt/gbrp10-yuv440p10be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-yuv440p10be.yuv
|
2
tests/ref/pixfmt/gbrp10-yuv440p10le
Normal file
2
tests/ref/pixfmt/gbrp10-yuv440p10le
Normal file
@ -0,0 +1,2 @@
|
||||
81cd02c0a12bc263aea2a79068dcb971 *tests/data/pixfmt/gbrp10-yuv440p10le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-yuv440p10le.yuv
|
2
tests/ref/pixfmt/gbrp10-yuv444p10be
Normal file
2
tests/ref/pixfmt/gbrp10-yuv444p10be
Normal file
@ -0,0 +1,2 @@
|
||||
1015f3ddc2979b399cc7d260d53bca21 *tests/data/pixfmt/gbrp10-yuv444p10be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-yuv444p10be.yuv
|
2
tests/ref/pixfmt/gbrp10-yuv444p10le
Normal file
2
tests/ref/pixfmt/gbrp10-yuv444p10le
Normal file
@ -0,0 +1,2 @@
|
||||
1015f3ddc2979b399cc7d260d53bca21 *tests/data/pixfmt/gbrp10-yuv444p10le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp10-yuv444p10le.yuv
|
2
tests/ref/pixfmt/gbrp12-gbrp12be
Normal file
2
tests/ref/pixfmt/gbrp12-gbrp12be
Normal file
@ -0,0 +1,2 @@
|
||||
29ab3d9be7c7e05ff55143bc2b74c21a *tests/data/pixfmt/gbrp12-gbrp12be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-gbrp12be.yuv
|
2
tests/ref/pixfmt/gbrp12-gbrp12le
Normal file
2
tests/ref/pixfmt/gbrp12-gbrp12le
Normal file
@ -0,0 +1,2 @@
|
||||
29ab3d9be7c7e05ff55143bc2b74c21a *tests/data/pixfmt/gbrp12-gbrp12le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-gbrp12le.yuv
|
2
tests/ref/pixfmt/gbrp12-gray12be
Normal file
2
tests/ref/pixfmt/gbrp12-gray12be
Normal file
@ -0,0 +1,2 @@
|
||||
62c995d8da784f0011905f54c9f20450 *tests/data/pixfmt/gbrp12-gray12be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-gray12be.yuv
|
2
tests/ref/pixfmt/gbrp12-gray12le
Normal file
2
tests/ref/pixfmt/gbrp12-gray12le
Normal file
@ -0,0 +1,2 @@
|
||||
62c995d8da784f0011905f54c9f20450 *tests/data/pixfmt/gbrp12-gray12le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-gray12le.yuv
|
2
tests/ref/pixfmt/gbrp12-p012be
Normal file
2
tests/ref/pixfmt/gbrp12-p012be
Normal file
@ -0,0 +1,2 @@
|
||||
a6f253ad594c7c2d2b3b8e9aff0a429d *tests/data/pixfmt/gbrp12-p012be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-p012be.yuv
|
2
tests/ref/pixfmt/gbrp12-p012le
Normal file
2
tests/ref/pixfmt/gbrp12-p012le
Normal file
@ -0,0 +1,2 @@
|
||||
a6f253ad594c7c2d2b3b8e9aff0a429d *tests/data/pixfmt/gbrp12-p012le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-p012le.yuv
|
2
tests/ref/pixfmt/gbrp12-p212be
Normal file
2
tests/ref/pixfmt/gbrp12-p212be
Normal file
@ -0,0 +1,2 @@
|
||||
1e7495fe1fc4b4215dfd426e27833847 *tests/data/pixfmt/gbrp12-p212be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-p212be.yuv
|
2
tests/ref/pixfmt/gbrp12-p212le
Normal file
2
tests/ref/pixfmt/gbrp12-p212le
Normal file
@ -0,0 +1,2 @@
|
||||
1e7495fe1fc4b4215dfd426e27833847 *tests/data/pixfmt/gbrp12-p212le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-p212le.yuv
|
2
tests/ref/pixfmt/gbrp12-p412be
Normal file
2
tests/ref/pixfmt/gbrp12-p412be
Normal file
@ -0,0 +1,2 @@
|
||||
6ff4167f711069638f0b2db840bdeb32 *tests/data/pixfmt/gbrp12-p412be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-p412be.yuv
|
2
tests/ref/pixfmt/gbrp12-p412le
Normal file
2
tests/ref/pixfmt/gbrp12-p412le
Normal file
@ -0,0 +1,2 @@
|
||||
6ff4167f711069638f0b2db840bdeb32 *tests/data/pixfmt/gbrp12-p412le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-p412le.yuv
|
2
tests/ref/pixfmt/gbrp12-xv36be
Normal file
2
tests/ref/pixfmt/gbrp12-xv36be
Normal file
@ -0,0 +1,2 @@
|
||||
6ff4167f711069638f0b2db840bdeb32 *tests/data/pixfmt/gbrp12-xv36be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-xv36be.yuv
|
2
tests/ref/pixfmt/gbrp12-xv36le
Normal file
2
tests/ref/pixfmt/gbrp12-xv36le
Normal file
@ -0,0 +1,2 @@
|
||||
6ff4167f711069638f0b2db840bdeb32 *tests/data/pixfmt/gbrp12-xv36le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-xv36le.yuv
|
2
tests/ref/pixfmt/gbrp12-y212le
Normal file
2
tests/ref/pixfmt/gbrp12-y212le
Normal file
@ -0,0 +1,2 @@
|
||||
1e7495fe1fc4b4215dfd426e27833847 *tests/data/pixfmt/gbrp12-y212le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-y212le.yuv
|
2
tests/ref/pixfmt/gbrp12-yuv420p12be
Normal file
2
tests/ref/pixfmt/gbrp12-yuv420p12be
Normal file
@ -0,0 +1,2 @@
|
||||
a6f253ad594c7c2d2b3b8e9aff0a429d *tests/data/pixfmt/gbrp12-yuv420p12be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-yuv420p12be.yuv
|
2
tests/ref/pixfmt/gbrp12-yuv420p12le
Normal file
2
tests/ref/pixfmt/gbrp12-yuv420p12le
Normal file
@ -0,0 +1,2 @@
|
||||
a6f253ad594c7c2d2b3b8e9aff0a429d *tests/data/pixfmt/gbrp12-yuv420p12le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-yuv420p12le.yuv
|
2
tests/ref/pixfmt/gbrp12-yuv422p12be
Normal file
2
tests/ref/pixfmt/gbrp12-yuv422p12be
Normal file
@ -0,0 +1,2 @@
|
||||
1e7495fe1fc4b4215dfd426e27833847 *tests/data/pixfmt/gbrp12-yuv422p12be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-yuv422p12be.yuv
|
2
tests/ref/pixfmt/gbrp12-yuv422p12le
Normal file
2
tests/ref/pixfmt/gbrp12-yuv422p12le
Normal file
@ -0,0 +1,2 @@
|
||||
1e7495fe1fc4b4215dfd426e27833847 *tests/data/pixfmt/gbrp12-yuv422p12le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-yuv422p12le.yuv
|
2
tests/ref/pixfmt/gbrp12-yuv440p12be
Normal file
2
tests/ref/pixfmt/gbrp12-yuv440p12be
Normal file
@ -0,0 +1,2 @@
|
||||
2530f4bda2e79ba6f5bb45084fab4839 *tests/data/pixfmt/gbrp12-yuv440p12be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-yuv440p12be.yuv
|
2
tests/ref/pixfmt/gbrp12-yuv440p12le
Normal file
2
tests/ref/pixfmt/gbrp12-yuv440p12le
Normal file
@ -0,0 +1,2 @@
|
||||
2530f4bda2e79ba6f5bb45084fab4839 *tests/data/pixfmt/gbrp12-yuv440p12le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-yuv440p12le.yuv
|
2
tests/ref/pixfmt/gbrp12-yuv444p12be
Normal file
2
tests/ref/pixfmt/gbrp12-yuv444p12be
Normal file
@ -0,0 +1,2 @@
|
||||
6ff4167f711069638f0b2db840bdeb32 *tests/data/pixfmt/gbrp12-yuv444p12be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-yuv444p12be.yuv
|
2
tests/ref/pixfmt/gbrp12-yuv444p12le
Normal file
2
tests/ref/pixfmt/gbrp12-yuv444p12le
Normal file
@ -0,0 +1,2 @@
|
||||
6ff4167f711069638f0b2db840bdeb32 *tests/data/pixfmt/gbrp12-yuv444p12le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp12-yuv444p12le.yuv
|
2
tests/ref/pixfmt/gbrp16-gbrp16be
Normal file
2
tests/ref/pixfmt/gbrp16-gbrp16be
Normal file
@ -0,0 +1,2 @@
|
||||
94062696eb0b5295e51e7011402df9f7 *tests/data/pixfmt/gbrp16-gbrp16be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp16-gbrp16be.yuv
|
2
tests/ref/pixfmt/gbrp16-gbrp16le
Normal file
2
tests/ref/pixfmt/gbrp16-gbrp16le
Normal file
@ -0,0 +1,2 @@
|
||||
94062696eb0b5295e51e7011402df9f7 *tests/data/pixfmt/gbrp16-gbrp16le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp16-gbrp16le.yuv
|
2
tests/ref/pixfmt/gbrp16-gray16be
Normal file
2
tests/ref/pixfmt/gbrp16-gray16be
Normal file
@ -0,0 +1,2 @@
|
||||
a0ba643a2c0e151cf57fc5a669119c30 *tests/data/pixfmt/gbrp16-gray16be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp16-gray16be.yuv
|
2
tests/ref/pixfmt/gbrp16-gray16le
Normal file
2
tests/ref/pixfmt/gbrp16-gray16le
Normal file
@ -0,0 +1,2 @@
|
||||
a0ba643a2c0e151cf57fc5a669119c30 *tests/data/pixfmt/gbrp16-gray16le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp16-gray16le.yuv
|
2
tests/ref/pixfmt/gbrp16-p016be
Normal file
2
tests/ref/pixfmt/gbrp16-p016be
Normal file
@ -0,0 +1,2 @@
|
||||
1c9911a8f978eee6e6c512e9889645d2 *tests/data/pixfmt/gbrp16-p016be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp16-p016be.yuv
|
2
tests/ref/pixfmt/gbrp16-p016le
Normal file
2
tests/ref/pixfmt/gbrp16-p016le
Normal file
@ -0,0 +1,2 @@
|
||||
1c9911a8f978eee6e6c512e9889645d2 *tests/data/pixfmt/gbrp16-p016le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp16-p016le.yuv
|
2
tests/ref/pixfmt/gbrp16-p216be
Normal file
2
tests/ref/pixfmt/gbrp16-p216be
Normal file
@ -0,0 +1,2 @@
|
||||
9935ba7a76d9a0c3585c839daddc6ae2 *tests/data/pixfmt/gbrp16-p216be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp16-p216be.yuv
|
2
tests/ref/pixfmt/gbrp16-p216le
Normal file
2
tests/ref/pixfmt/gbrp16-p216le
Normal file
@ -0,0 +1,2 @@
|
||||
9935ba7a76d9a0c3585c839daddc6ae2 *tests/data/pixfmt/gbrp16-p216le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp16-p216le.yuv
|
2
tests/ref/pixfmt/gbrp16-p416be
Normal file
2
tests/ref/pixfmt/gbrp16-p416be
Normal file
@ -0,0 +1,2 @@
|
||||
f3d24ec5ed4834335c8b67bbaa76eb7a *tests/data/pixfmt/gbrp16-p416be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp16-p416be.yuv
|
2
tests/ref/pixfmt/gbrp16-p416le
Normal file
2
tests/ref/pixfmt/gbrp16-p416le
Normal file
@ -0,0 +1,2 @@
|
||||
f3d24ec5ed4834335c8b67bbaa76eb7a *tests/data/pixfmt/gbrp16-p416le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp16-p416le.yuv
|
2
tests/ref/pixfmt/gbrp16-rgb48
Normal file
2
tests/ref/pixfmt/gbrp16-rgb48
Normal file
@ -0,0 +1,2 @@
|
||||
94062696eb0b5295e51e7011402df9f7 *tests/data/pixfmt/gbrp16-rgb48.yuv
|
||||
15206400 tests/data/pixfmt/gbrp16-rgb48.yuv
|
2
tests/ref/pixfmt/gbrp16-xv48be
Normal file
2
tests/ref/pixfmt/gbrp16-xv48be
Normal file
@ -0,0 +1,2 @@
|
||||
f3d24ec5ed4834335c8b67bbaa76eb7a *tests/data/pixfmt/gbrp16-xv48be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp16-xv48be.yuv
|
2
tests/ref/pixfmt/gbrp16-xv48le
Normal file
2
tests/ref/pixfmt/gbrp16-xv48le
Normal file
@ -0,0 +1,2 @@
|
||||
f3d24ec5ed4834335c8b67bbaa76eb7a *tests/data/pixfmt/gbrp16-xv48le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp16-xv48le.yuv
|
2
tests/ref/pixfmt/gbrp16-y216le
Normal file
2
tests/ref/pixfmt/gbrp16-y216le
Normal file
@ -0,0 +1,2 @@
|
||||
9935ba7a76d9a0c3585c839daddc6ae2 *tests/data/pixfmt/gbrp16-y216le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp16-y216le.yuv
|
2
tests/ref/pixfmt/gbrp16-yuv420p16be
Normal file
2
tests/ref/pixfmt/gbrp16-yuv420p16be
Normal file
@ -0,0 +1,2 @@
|
||||
1c9911a8f978eee6e6c512e9889645d2 *tests/data/pixfmt/gbrp16-yuv420p16be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp16-yuv420p16be.yuv
|
2
tests/ref/pixfmt/gbrp16-yuv420p16le
Normal file
2
tests/ref/pixfmt/gbrp16-yuv420p16le
Normal file
@ -0,0 +1,2 @@
|
||||
1c9911a8f978eee6e6c512e9889645d2 *tests/data/pixfmt/gbrp16-yuv420p16le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp16-yuv420p16le.yuv
|
2
tests/ref/pixfmt/gbrp16-yuv422p16be
Normal file
2
tests/ref/pixfmt/gbrp16-yuv422p16be
Normal file
@ -0,0 +1,2 @@
|
||||
9935ba7a76d9a0c3585c839daddc6ae2 *tests/data/pixfmt/gbrp16-yuv422p16be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp16-yuv422p16be.yuv
|
2
tests/ref/pixfmt/gbrp16-yuv422p16le
Normal file
2
tests/ref/pixfmt/gbrp16-yuv422p16le
Normal file
@ -0,0 +1,2 @@
|
||||
9935ba7a76d9a0c3585c839daddc6ae2 *tests/data/pixfmt/gbrp16-yuv422p16le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp16-yuv422p16le.yuv
|
2
tests/ref/pixfmt/gbrp16-yuv444p16be
Normal file
2
tests/ref/pixfmt/gbrp16-yuv444p16be
Normal file
@ -0,0 +1,2 @@
|
||||
f3d24ec5ed4834335c8b67bbaa76eb7a *tests/data/pixfmt/gbrp16-yuv444p16be.yuv
|
||||
15206400 tests/data/pixfmt/gbrp16-yuv444p16be.yuv
|
2
tests/ref/pixfmt/gbrp16-yuv444p16le
Normal file
2
tests/ref/pixfmt/gbrp16-yuv444p16le
Normal file
@ -0,0 +1,2 @@
|
||||
f3d24ec5ed4834335c8b67bbaa76eb7a *tests/data/pixfmt/gbrp16-yuv444p16le.yuv
|
||||
15206400 tests/data/pixfmt/gbrp16-yuv444p16le.yuv
|
2
tests/ref/pixfmt/yuv444p10-gbrp10be
Normal file
2
tests/ref/pixfmt/yuv444p10-gbrp10be
Normal file
@ -0,0 +1,2 @@
|
||||
6cdf9b72bd78858e6c67fa13073e12fd *tests/data/pixfmt/yuv444p10-gbrp10be.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-gbrp10be.yuv
|
2
tests/ref/pixfmt/yuv444p10-gbrp10le
Normal file
2
tests/ref/pixfmt/yuv444p10-gbrp10le
Normal file
@ -0,0 +1,2 @@
|
||||
6cdf9b72bd78858e6c67fa13073e12fd *tests/data/pixfmt/yuv444p10-gbrp10le.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-gbrp10le.yuv
|
2
tests/ref/pixfmt/yuv444p10-gray10be
Normal file
2
tests/ref/pixfmt/yuv444p10-gray10be
Normal file
@ -0,0 +1,2 @@
|
||||
8aa2787bccc6bb606b6465ca7807c916 *tests/data/pixfmt/yuv444p10-gray10be.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-gray10be.yuv
|
2
tests/ref/pixfmt/yuv444p10-gray10le
Normal file
2
tests/ref/pixfmt/yuv444p10-gray10le
Normal file
@ -0,0 +1,2 @@
|
||||
8aa2787bccc6bb606b6465ca7807c916 *tests/data/pixfmt/yuv444p10-gray10le.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-gray10le.yuv
|
2
tests/ref/pixfmt/yuv444p10-p010be
Normal file
2
tests/ref/pixfmt/yuv444p10-p010be
Normal file
@ -0,0 +1,2 @@
|
||||
1854c7f0ebae45a92a5932eeae5a7b0c *tests/data/pixfmt/yuv444p10-p010be.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-p010be.yuv
|
2
tests/ref/pixfmt/yuv444p10-p010le
Normal file
2
tests/ref/pixfmt/yuv444p10-p010le
Normal file
@ -0,0 +1,2 @@
|
||||
1854c7f0ebae45a92a5932eeae5a7b0c *tests/data/pixfmt/yuv444p10-p010le.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-p010le.yuv
|
2
tests/ref/pixfmt/yuv444p10-p210be
Normal file
2
tests/ref/pixfmt/yuv444p10-p210be
Normal file
@ -0,0 +1,2 @@
|
||||
97f489a1f7e4f6537dd3b137368991d3 *tests/data/pixfmt/yuv444p10-p210be.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-p210be.yuv
|
2
tests/ref/pixfmt/yuv444p10-p210le
Normal file
2
tests/ref/pixfmt/yuv444p10-p210le
Normal file
@ -0,0 +1,2 @@
|
||||
97f489a1f7e4f6537dd3b137368991d3 *tests/data/pixfmt/yuv444p10-p210le.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-p210le.yuv
|
2
tests/ref/pixfmt/yuv444p10-p410be
Normal file
2
tests/ref/pixfmt/yuv444p10-p410be
Normal file
@ -0,0 +1,2 @@
|
||||
c9f69deda55dd67c78c6e1e819b0bc52 *tests/data/pixfmt/yuv444p10-p410be.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-p410be.yuv
|
2
tests/ref/pixfmt/yuv444p10-p410le
Normal file
2
tests/ref/pixfmt/yuv444p10-p410le
Normal file
@ -0,0 +1,2 @@
|
||||
c9f69deda55dd67c78c6e1e819b0bc52 *tests/data/pixfmt/yuv444p10-p410le.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-p410le.yuv
|
2
tests/ref/pixfmt/yuv444p10-v30xle
Normal file
2
tests/ref/pixfmt/yuv444p10-v30xle
Normal file
@ -0,0 +1,2 @@
|
||||
c9f69deda55dd67c78c6e1e819b0bc52 *tests/data/pixfmt/yuv444p10-v30xle.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-v30xle.yuv
|
2
tests/ref/pixfmt/yuv444p10-x2bgr10le
Normal file
2
tests/ref/pixfmt/yuv444p10-x2bgr10le
Normal file
@ -0,0 +1,2 @@
|
||||
bd94a74eca76673fd6ada31dbce543dc *tests/data/pixfmt/yuv444p10-x2bgr10le.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-x2bgr10le.yuv
|
2
tests/ref/pixfmt/yuv444p10-x2rgb10le
Normal file
2
tests/ref/pixfmt/yuv444p10-x2rgb10le
Normal file
@ -0,0 +1,2 @@
|
||||
bd94a74eca76673fd6ada31dbce543dc *tests/data/pixfmt/yuv444p10-x2rgb10le.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-x2rgb10le.yuv
|
2
tests/ref/pixfmt/yuv444p10-xv30le
Normal file
2
tests/ref/pixfmt/yuv444p10-xv30le
Normal file
@ -0,0 +1,2 @@
|
||||
c9f69deda55dd67c78c6e1e819b0bc52 *tests/data/pixfmt/yuv444p10-xv30le.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-xv30le.yuv
|
2
tests/ref/pixfmt/yuv444p10-y210le
Normal file
2
tests/ref/pixfmt/yuv444p10-y210le
Normal file
@ -0,0 +1,2 @@
|
||||
97f489a1f7e4f6537dd3b137368991d3 *tests/data/pixfmt/yuv444p10-y210le.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-y210le.yuv
|
2
tests/ref/pixfmt/yuv444p10-yuv420p10be
Normal file
2
tests/ref/pixfmt/yuv444p10-yuv420p10be
Normal file
@ -0,0 +1,2 @@
|
||||
1854c7f0ebae45a92a5932eeae5a7b0c *tests/data/pixfmt/yuv444p10-yuv420p10be.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-yuv420p10be.yuv
|
2
tests/ref/pixfmt/yuv444p10-yuv420p10le
Normal file
2
tests/ref/pixfmt/yuv444p10-yuv420p10le
Normal file
@ -0,0 +1,2 @@
|
||||
1854c7f0ebae45a92a5932eeae5a7b0c *tests/data/pixfmt/yuv444p10-yuv420p10le.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-yuv420p10le.yuv
|
2
tests/ref/pixfmt/yuv444p10-yuv422p10be
Normal file
2
tests/ref/pixfmt/yuv444p10-yuv422p10be
Normal file
@ -0,0 +1,2 @@
|
||||
97f489a1f7e4f6537dd3b137368991d3 *tests/data/pixfmt/yuv444p10-yuv422p10be.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-yuv422p10be.yuv
|
2
tests/ref/pixfmt/yuv444p10-yuv422p10le
Normal file
2
tests/ref/pixfmt/yuv444p10-yuv422p10le
Normal file
@ -0,0 +1,2 @@
|
||||
97f489a1f7e4f6537dd3b137368991d3 *tests/data/pixfmt/yuv444p10-yuv422p10le.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-yuv422p10le.yuv
|
2
tests/ref/pixfmt/yuv444p10-yuv440p10be
Normal file
2
tests/ref/pixfmt/yuv444p10-yuv440p10be
Normal file
@ -0,0 +1,2 @@
|
||||
71571ea8895dee2019133bb732e420ae *tests/data/pixfmt/yuv444p10-yuv440p10be.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-yuv440p10be.yuv
|
2
tests/ref/pixfmt/yuv444p10-yuv440p10le
Normal file
2
tests/ref/pixfmt/yuv444p10-yuv440p10le
Normal file
@ -0,0 +1,2 @@
|
||||
71571ea8895dee2019133bb732e420ae *tests/data/pixfmt/yuv444p10-yuv440p10le.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-yuv440p10le.yuv
|
2
tests/ref/pixfmt/yuv444p10-yuv444p10be
Normal file
2
tests/ref/pixfmt/yuv444p10-yuv444p10be
Normal file
@ -0,0 +1,2 @@
|
||||
c9f69deda55dd67c78c6e1e819b0bc52 *tests/data/pixfmt/yuv444p10-yuv444p10be.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-yuv444p10be.yuv
|
2
tests/ref/pixfmt/yuv444p10-yuv444p10le
Normal file
2
tests/ref/pixfmt/yuv444p10-yuv444p10le
Normal file
@ -0,0 +1,2 @@
|
||||
c9f69deda55dd67c78c6e1e819b0bc52 *tests/data/pixfmt/yuv444p10-yuv444p10le.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p10-yuv444p10le.yuv
|
2
tests/ref/pixfmt/yuv444p12-gbrp12be
Normal file
2
tests/ref/pixfmt/yuv444p12-gbrp12be
Normal file
@ -0,0 +1,2 @@
|
||||
01115c63e1c29a441d7b7ed195b772b6 *tests/data/pixfmt/yuv444p12-gbrp12be.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p12-gbrp12be.yuv
|
2
tests/ref/pixfmt/yuv444p12-gbrp12le
Normal file
2
tests/ref/pixfmt/yuv444p12-gbrp12le
Normal file
@ -0,0 +1,2 @@
|
||||
01115c63e1c29a441d7b7ed195b772b6 *tests/data/pixfmt/yuv444p12-gbrp12le.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p12-gbrp12le.yuv
|
2
tests/ref/pixfmt/yuv444p12-gray12be
Normal file
2
tests/ref/pixfmt/yuv444p12-gray12be
Normal file
@ -0,0 +1,2 @@
|
||||
4169bcb673a2d53639d3a68f9f65f164 *tests/data/pixfmt/yuv444p12-gray12be.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p12-gray12be.yuv
|
2
tests/ref/pixfmt/yuv444p12-gray12le
Normal file
2
tests/ref/pixfmt/yuv444p12-gray12le
Normal file
@ -0,0 +1,2 @@
|
||||
4169bcb673a2d53639d3a68f9f65f164 *tests/data/pixfmt/yuv444p12-gray12le.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p12-gray12le.yuv
|
2
tests/ref/pixfmt/yuv444p12-p012be
Normal file
2
tests/ref/pixfmt/yuv444p12-p012be
Normal file
@ -0,0 +1,2 @@
|
||||
7dcb29fa938b1ef3dcf7022df2269430 *tests/data/pixfmt/yuv444p12-p012be.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p12-p012be.yuv
|
2
tests/ref/pixfmt/yuv444p12-p012le
Normal file
2
tests/ref/pixfmt/yuv444p12-p012le
Normal file
@ -0,0 +1,2 @@
|
||||
7dcb29fa938b1ef3dcf7022df2269430 *tests/data/pixfmt/yuv444p12-p012le.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p12-p012le.yuv
|
2
tests/ref/pixfmt/yuv444p12-p212be
Normal file
2
tests/ref/pixfmt/yuv444p12-p212be
Normal file
@ -0,0 +1,2 @@
|
||||
57776acbfc159f077df11ef9b686603d *tests/data/pixfmt/yuv444p12-p212be.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p12-p212be.yuv
|
2
tests/ref/pixfmt/yuv444p12-p212le
Normal file
2
tests/ref/pixfmt/yuv444p12-p212le
Normal file
@ -0,0 +1,2 @@
|
||||
57776acbfc159f077df11ef9b686603d *tests/data/pixfmt/yuv444p12-p212le.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p12-p212le.yuv
|
2
tests/ref/pixfmt/yuv444p12-p412be
Normal file
2
tests/ref/pixfmt/yuv444p12-p412be
Normal file
@ -0,0 +1,2 @@
|
||||
5d600b24fcb10ff30d9ea1bdd0df87d0 *tests/data/pixfmt/yuv444p12-p412be.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p12-p412be.yuv
|
2
tests/ref/pixfmt/yuv444p12-p412le
Normal file
2
tests/ref/pixfmt/yuv444p12-p412le
Normal file
@ -0,0 +1,2 @@
|
||||
5d600b24fcb10ff30d9ea1bdd0df87d0 *tests/data/pixfmt/yuv444p12-p412le.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p12-p412le.yuv
|
2
tests/ref/pixfmt/yuv444p12-xv36be
Normal file
2
tests/ref/pixfmt/yuv444p12-xv36be
Normal file
@ -0,0 +1,2 @@
|
||||
5d600b24fcb10ff30d9ea1bdd0df87d0 *tests/data/pixfmt/yuv444p12-xv36be.yuv
|
||||
15206400 tests/data/pixfmt/yuv444p12-xv36be.yuv
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user