Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: James Almer <jamrial@gmail.com>
To: ffmpeg-devel@ffmpeg.org
Subject: [FFmpeg-devel] [PATCH 4/4] fate/cbs: add more VVC tests
Date: Sun,  2 Jul 2023 20:26:22 -0300
Message-ID: <20230702232622.6870-4-jamrial@gmail.com> (raw)
In-Reply-To: <20230702232622.6870-1-jamrial@gmail.com>

Signed-off-by: James Almer <jamrial@gmail.com>
---
 tests/fate/cbs.mak                 | 5 +++++
 tests/ref/fate/cbs-vvc-APSALF_A_2  | 1 +
 tests/ref/fate/cbs-vvc-APSLMCS_D_1 | 1 +
 tests/ref/fate/cbs-vvc-APSMULT_A_4 | 1 +
 tests/ref/fate/cbs-vvc-DCI_A_3     | 1 +
 tests/ref/fate/cbs-vvc-OPI_B_3     | 1 +
 6 files changed, 10 insertions(+)
 create mode 100644 tests/ref/fate/cbs-vvc-APSALF_A_2
 create mode 100644 tests/ref/fate/cbs-vvc-APSLMCS_D_1
 create mode 100644 tests/ref/fate/cbs-vvc-APSMULT_A_4
 create mode 100644 tests/ref/fate/cbs-vvc-DCI_A_3
 create mode 100644 tests/ref/fate/cbs-vvc-OPI_B_3

diff --git a/tests/fate/cbs.mak b/tests/fate/cbs.mak
index 4d8742d99c..802b0351a3 100644
--- a/tests/fate/cbs.mak
+++ b/tests/fate/cbs.mak
@@ -167,12 +167,17 @@ fate-cbs-hevc: $(FATE_CBS_HEVC-yes)
 # H.266 read/write
 
 FATE_CBS_VVC_SAMPLES =        \
+    APSALF_A_2.bit            \
+    APSLMCS_D_1.bit           \
+    APSMULT_A_4.bit           \
     AUD_A_3.bit               \
     BOUNDARY_A_3.bit          \
     BUMP_A_2.bit              \
     CodingToolsSets_A_2.bit   \
     CROP_B_4.bit              \
+    DCI_A_3.bit               \
     HRD_A_3.bit               \
+    OPI_B_3.bit               \
     PHSH_B_1.bit              \
     POC_A_1.bit               \
     PPS_B_1.bit               \
diff --git a/tests/ref/fate/cbs-vvc-APSALF_A_2 b/tests/ref/fate/cbs-vvc-APSALF_A_2
new file mode 100644
index 0000000000..eb2fc02a5e
--- /dev/null
+++ b/tests/ref/fate/cbs-vvc-APSALF_A_2
@@ -0,0 +1 @@
+c981a00e28e51adde1654850935a889d
diff --git a/tests/ref/fate/cbs-vvc-APSLMCS_D_1 b/tests/ref/fate/cbs-vvc-APSLMCS_D_1
new file mode 100644
index 0000000000..430dc934b7
--- /dev/null
+++ b/tests/ref/fate/cbs-vvc-APSLMCS_D_1
@@ -0,0 +1 @@
+e2e3407885d84e0dee5ec5d51dd4a3a6
diff --git a/tests/ref/fate/cbs-vvc-APSMULT_A_4 b/tests/ref/fate/cbs-vvc-APSMULT_A_4
new file mode 100644
index 0000000000..79f29373b9
--- /dev/null
+++ b/tests/ref/fate/cbs-vvc-APSMULT_A_4
@@ -0,0 +1 @@
+66dc3dba5c25bcaab231007bc059c331
diff --git a/tests/ref/fate/cbs-vvc-DCI_A_3 b/tests/ref/fate/cbs-vvc-DCI_A_3
new file mode 100644
index 0000000000..fec635afa5
--- /dev/null
+++ b/tests/ref/fate/cbs-vvc-DCI_A_3
@@ -0,0 +1 @@
+2b0eb33eb66078a3454619c5612e7bc2
diff --git a/tests/ref/fate/cbs-vvc-OPI_B_3 b/tests/ref/fate/cbs-vvc-OPI_B_3
new file mode 100644
index 0000000000..99c85165aa
--- /dev/null
+++ b/tests/ref/fate/cbs-vvc-OPI_B_3
@@ -0,0 +1 @@
+c35066104c7cf9be0e7b9aad5b576256
-- 
2.41.0

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

  parent reply	other threads:[~2023-07-02 23:28 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-02 23:26 [FFmpeg-devel] [PATCH 1/4] avcodec/cbs_h266: add support for Operating point information NALU type James Almer
2023-07-02 23:26 ` [FFmpeg-devel] [PATCH 2/4] avcodec/cbs_h266: add support for Decoding capability " James Almer
2023-07-03 15:11   ` Nuo Mi
2023-07-02 23:26 ` [FFmpeg-devel] [PATCH 3/4] avcodec/cbs_h266: add support for Adaptation parameter set " James Almer
2023-07-05 14:29   ` Nuo Mi
2023-07-05 18:11     ` [FFmpeg-devel] [PATCH v2 " James Almer
2023-07-05 18:33     ` [FFmpeg-devel] [PATCH v3] " James Almer
2023-07-05 18:36     ` [FFmpeg-devel] [PATCH v4] " James Almer
2023-07-06  0:41       ` Nuo Mi
2023-07-06  1:03         ` James Almer
2023-07-06 14:00           ` Nuo Mi
2023-07-02 23:26 ` James Almer [this message]
2023-07-05 14:32 ` [FFmpeg-devel] [PATCH 1/4] avcodec/cbs_h266: add support for Operating point information " Nuo Mi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230702232622.6870-4-jamrial@gmail.com \
    --to=jamrial@gmail.com \
    --cc=ffmpeg-devel@ffmpeg.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

This inbox may be cloned and mirrored by anyone:

	git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
		ffmpegdev@gitmailbox.com
	public-inbox-index ffmpegdev

Example config snippet for mirrors.


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git