Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
x265
FFmpeg
Newest Tests
LiteRT
WarpX
Epoch
Valkey
Whisperfile
XNNPACK
Recently Updated Tests
ASTC Encoder
SVT-AV1
Unvanquished
Primesieve
XNNPACK
oneDNN
New & Recently Updated Tests
Recently Updated Suites
Database Test Suite
Machine Learning
Steam
New & Recently Updated Suites
Component Benchmarks
CPUs / Processors
GPUs / Graphics
OpenGL
Disks / Storage
Motherboards
File-Systems
Operating Systems
OpenBenchmarking.org
Corporate / Organization Info
Bug Reports / Feature Requests
dav1d 1.16.0
pts/dav1d-1.16.0
- 01 June 2024 -
Update against dav1d 1.4.2 upstream.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.5--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://ffmpeg.org/releases/ffmpeg-6.1.1.tar.xz</URL> <MD5>341d719415b7f95bb59f5016f2864ac6</MD5> <SHA256>8684f4b00f94b85461884c3719382f1261f0d9eb3d59640a1f4ac0873616f968</SHA256> <FileName>ffmpeg-6.1.1.tar.xz</FileName> <FileSize>10458600</FileSize> <PlatformSpecific>Linux, BSD</PlatformSpecific> </Package> <Package> <URL>http://download.videolan.org/pub/videolan/dav1d/1.4.2/dav1d-1.4.2.tar.xz</URL> <MD5>cdfa07cb6641caad509ac8e46ae7aa2a</MD5> <SHA256>7392cf4c432734eebb383319b5e05e994bffdcdfe66f82287c38873601a4ef0b</SHA256> <FileName>dav1d-1.4.2.tar.xz</FileName> <FileSize>970104</FileSize> <PlatformSpecific>Linux, BSD</PlatformSpecific> </Package> <Package> <URL>http://www.phoronix-test-suite.com/benchmark-files/Stream2_AV1_HD_6.8mbps.webm</URL> <MD5>5e4c83cf494cbe6dc1668cbbd7ff774c</MD5> <SHA256>2f23d29750a0663a6df656e8137cf934bddfc96b31e5088db2c3624f19ed14d4</SHA256> <FileName>Stream2_AV1_HD_6.8mbps.webm</FileName> <FileSize>122378926</FileSize> </Package> <Package> <URL>http://www.phoronix-test-suite.com/benchmark-files/Stream2_AV1_4K_22.7mbps.webm</URL> <MD5>8acc9c60c10a37bf4e568b465b03e35a</MD5> <SHA256>52f3aa1d4b4487af62d37b0f295aabbc4b57f03fdc4c76402c6358193e4aa490</SHA256> <FileName>Stream2_AV1_4K_22.7mbps.webm</FileName> <FileSize>409458359</FileSize> </Package> <Package> <URL>http://download.opencontent.netflix.com.s3.amazonaws.com/AV1/Chimera/Old/Chimera-AV1-8bit-1920x1080-6736kbps.mp4</URL> <MD5>d444e11f8b049de2a9739899a9c0b4f6</MD5> <SHA256>d566d294e2c18bb274a54aad03352c92312a62c393656d38e1f7dda10c0bf10c</SHA256> <FileName>Chimera-AV1-8bit-1920x1080-6736kbps.mp4</FileName> <FileSize>313490236</FileSize> </Package> <Package> <URL>http://download.opencontent.netflix.com.s3.amazonaws.com/AV1/Chimera/Old/Chimera-AV1-10bit-1920x1080-6191kbps.mp4</URL> <MD5>4c0f24bac42ddcda3d46087a36492ce4</MD5> <SHA256>df2080fd77e0dbd9138bd4f172bf008d2ade17da7ab4532fba54ceccf40a9439</SHA256> <FileName>Chimera-AV1-10bit-1920x1080-6191kbps.mp4</FileName> <FileSize>288122748</FileSize> </Package> <Package> <URL>https://github.com/GyanD/codexffmpeg/releases/download/6.1.1/ffmpeg-6.1.1-full_build.zip</URL> <MD5>6fa7ae9c330d9c2a7c8e649d33f8ed90</MD5> <SHA256>3537631e7e6261987ba01053d52198aeb020f29619f7d8e3e453048b7146b442</SHA256> <FileName>ffmpeg-6.1.1-full_build.zip</FileName> <FileSize>161885786</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> <Package> <URL>http://phoronix-test-suite.com/benchmark-files/dav1d-build-win64-1-4-2.zip</URL> <MD5>22eb50fcb9488e6222f96890ca93e926</MD5> <SHA256>09ae3bda87e3efdb0a035b597f0d8a2d73855abe89b498d5cb14f0e9e2309670</SHA256> <FileName>dav1d-build-win64-1-4-2.zip</FileName> <FileSize>2429635</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh # FFmpeg install to demux AV1 WebM to IVF that can then be consumed by dav1d... tar -xf ffmpeg-6.1.1.tar.xz mkdir ffmpeg_/ cd ffmpeg-6.1.1 ./configure --disable-zlib --disable-doc --prefix=$HOME/ffmpeg_/ make -j $NUM_CPU_CORES echo $? > ~/install-exit-status make install cd ~/ ./ffmpeg_/bin/ffmpeg -i Stream2_AV1_HD_6.8mbps.webm -vcodec copy -an -f ivf summer_nature_1080p.ivf ./ffmpeg_/bin/ffmpeg -i Stream2_AV1_4K_22.7mbps.webm -vcodec copy -an -f ivf summer_nature_4k.ivf ./ffmpeg_/bin/ffmpeg -i Chimera-AV1-8bit-1920x1080-6736kbps.mp4 -vcodec copy -an -f ivf chimera_8b_1080p.ivf ./ffmpeg_/bin/ffmpeg -i Chimera-AV1-10bit-1920x1080-6191kbps.mp4 -vcodec copy -an -f ivf chimera_10b_1080p.ivf rm -rf ffmpeg-6.1.1 rm -rf ffmpeg_ # Build Dav1d tar -xf dav1d-1.4.2.tar.xz cd dav1d-1.4.2 meson build --buildtype release ninja -C build echo $? > ~/install-exit-status cd ~ echo "#!/bin/sh ./dav1d-1.4.2/build/tools/dav1d \$@ --muxer null --threads \$NUM_CPU_CORES --filmgrain 0 > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > dav1d chmod +x dav1d
install_windows.sh
#!/bin/sh unzip -o ffmpeg-6.1.1-full_build.zip ./ffmpeg-6.1.1-full_build/bin/ffmpeg.exe -i Stream2_AV1_HD_6.8mbps.webm -vcodec copy -an -f ivf summer_nature_1080p.ivf ./ffmpeg-6.1.1-full_build/bin/ffmpeg.exe -i Stream2_AV1_4K_22.7mbps.webm -vcodec copy -an -f ivf summer_nature_4k.ivf ./ffmpeg-6.1.1-full_build/bin/ffmpeg.exe -i Chimera-AV1-8bit-1920x1080-6736kbps.mp4 -vcodec copy -an -f ivf chimera_8b_1080p.ivf ./ffmpeg-6.1.1-full_build/bin/ffmpeg.exe -i Chimera-AV1-10bit-1920x1080-6191kbps.mp4 -vcodec copy -an -f ivf chimera_10b_1080p.ivf rm -rf ffmpeg-4.4-full_build unzip -o dav1d-build-win64-1-4-2.zip echo "#!/bin/sh ./build/dav1d_install/bin/dav1d.exe \$@ --muxer null --threads \$NUM_CPU_CORES --filmgrain 0 > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > dav1d chmod +x dav1d
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.5--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Decoded 8929 8929 frames (100.0%) - #_RESULT_# 25 fps (9.20x)</OutputTemplate> <LineHint>fps</LineHint> <TurnCharsToSpace>/</TurnCharsToSpace> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.5--> <PhoronixTestSuite> <TestInformation> <Title>dav1d</Title> <AppVersion>1.4.2</AppVersion> <Description>Dav1d is an open-source, speedy AV1 video decoder supporting modern SIMD CPU features. This test profile times how long it takes to decode sample AV1 video content.</Description> <ResultScale>FPS</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.16.0</Version> <SupportedPlatforms>Linux, BSD, Windows</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, yasm, meson</ExternalDependencies> <EnvironmentSize>1200</EnvironmentSize> <ProjectURL>https://www.videolan.org/projects/dav1d.html</ProjectURL> <RepositoryURL>https://code.videolan.org/videolan/dav1d</RepositoryURL> <InternalTags>SMP</InternalTags> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Default> <Arguments> </Arguments> </Default> <Option> <DisplayName>Video Input</DisplayName> <Identifier>video</Identifier> <ArgumentPrefix>-i </ArgumentPrefix> <Menu> <Entry> <Name>Summer Nature 1080p</Name> <Value>summer_nature_1080p.ivf</Value> </Entry> <Entry> <Name>Summer Nature 4K</Name> <Value>summer_nature_4k.ivf</Value> </Entry> <Entry> <Name>Chimera 1080p</Name> <Value>chimera_8b_1080p.ivf</Value> </Entry> <Entry> <Name>Chimera 1080p 10-bit</Name> <Value>chimera_10b_1080p.ivf</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>