Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

COM-12617: Add basic AV1 tests for Makefile check target #229

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install dependencies
run: |
make install_deps
sudo apt update && sudo apt install gstreamer1.0-tools gstreamer1.0-libav gstreamer1.0-plugins-bad ffmpeg vpx-tools
sudo apt update && sudo apt install gstreamer1.0-tools gstreamer1.0-libav gstreamer1.0-plugins-bad ffmpeg vpx-tools aom-tools
- name: Check
run: |
make check
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Install dependencies
run: |
make install_deps
sudo apt update && sudo apt install gstreamer1.0-tools gstreamer1.0-libav gstreamer1.0-plugins-bad ffmpeg vpx-tools
sudo apt update && sudo apt install gstreamer1.0-tools gstreamer1.0-libav gstreamer1.0-plugins-bad ffmpeg vpx-tools aom-tools
- name: Check
run: |
make check
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ ifneq ($(OS),Windows_NT)
$(FLUSTER) run -ts dummy_fail -j1 -ff -s; test $$? -ne 0
$(FLUSTER) download dummy non_existing_test_suite -k; test $$? -ne 0
$(FLUSTER) download dummy dummy_download_fail -k; test $$? -ne 0
$(FLUSTER) download H264-min H265-min VP8-min VP9-min -k
$(FLUSTER) download AV1-min H264-min H265-min VP8-min VP9-min -k
$(FLUSTER) run -ts AV1-min -d libaom-AV1 -s
$(FLUSTER) run -ts H264-min -d GStreamer-H.264-Libav-Gst1.0 FFmpeg-H.264 -s
$(FLUSTER) run -ts H265-min -d GStreamer-H.265-Libav-Gst1.0 FFmpeg-H.265 -s
$(FLUSTER) run -ts VP8-min -d libvpx-VP8 -s
Expand Down
15 changes: 15 additions & 0 deletions check/AV1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "AV1-min",
"codec": "AV1",
"description": "AV1 Test Vector Catalogue from https://storage.googleapis.com/aom-test-data",
"test_vectors": [
{
"name": "av1-1-b8-01-size-200x226",
"source": "https://storage.googleapis.com/aom-test-data/av1-1-b8-01-size-200x226.ivf",
"source_checksum": "b5597b4ee41c15ccc323406ad7618c55",
"input_file": "av1-1-b8-01-size-200x226.ivf",
"output_format": "yuv420p",
"result": "dd58cb951625357094575a2b591781ee"
}
]
}