Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
FFmpeg
x265
Newest Tests
Rustls
LiteRT
WarpX
Epoch
Valkey
Whisperfile
Recently Updated Tests
ACES DGEMM
NWChem
SuperTuxKart
ASTC Encoder
SVT-AV1
Unvanquished
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.12.0
pts/dav1d-1.12.0
- 18 March 2022 -
Update against dav1d 1.0 upstream release.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.2--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://ffmpeg.org/releases/ffmpeg-4.4.tar.xz</URL> <MD5>7b9d5b652d20e8c5405304ad72636d4a</MD5> <SHA256>06b10a183ce5371f915c6bb15b7b1fffbe046e8275099c96affc29e17645d909</SHA256> <FileName>ffmpeg-4.4.tar.xz</FileName> <FileSize>9557868</FileSize> <PlatformSpecific>Linux, BSD</PlatformSpecific> </Package> <Package> <URL>http://downloads.videolan.org/pub/videolan/dav1d/1.0.0/dav1d-1.0.0.tar.xz</URL> <MD5>424548396e45406fe2f395e248b38121</MD5> <SHA256>51737db7e4897e599684f873a4725176dd3c779e639411d7c4fce134bb5ebb82</SHA256> <FileName>dav1d-1.0.0.tar.xz</FileName> <FileSize>810116</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/4.4/ffmpeg-4.4-full_build.zip</URL> <MD5>6b8dc8a7da45bee2cfc271bde913116a</MD5> <SHA256>bdb7972b4e15846db574c856536a0d059d5c68ce362287c11072caee48c35277</SHA256> <FileName>ffmpeg-4.4-full_build.zip</FileName> <FileSize>134540515</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> <Package> <URL>http://phoronix-test-suite.com/benchmark-files/dav1d-build-win64-1-0-0.zip</URL> <MD5>5f8660353dad8671b2023bb0c852ed62</MD5> <SHA256>27db3b12dbcbdda0a5eb0b523b2c54e4a877ea749093c7f0a0d386f1e0694559</SHA256> <FileName>dav1d-build-win64-1-0-0.zip</FileName> <FileSize>2220486</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-4.4.tar.xz mkdir ffmpeg_/ cd ffmpeg-4.4 ./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-4.2.1 rm -rf ffmpeg_ # Build Dav1d tar -xf dav1d-1.0.0.tar.xz cd dav1d-1.0.0 meson build --buildtype release ninja -C build echo $? > ~/install-exit-status cd ~ echo "#!/bin/sh ./dav1d-1.0.0/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-4.4-full_build.zip ./ffmpeg-4.4-full_build/bin/ffmpeg.exe -i Stream2_AV1_HD_6.8mbps.webm -vcodec copy -an -f ivf summer_nature_1080p.ivf ./ffmpeg-4.4-full_build/bin/ffmpeg.exe -i Stream2_AV1_4K_22.7mbps.webm -vcodec copy -an -f ivf summer_nature_4k.ivf ./ffmpeg-4.4-full_build/bin/ffmpeg.exe -i Chimera-AV1-8bit-1920x1080-6736kbps.mp4 -vcodec copy -an -f ivf chimera_8b_1080p.ivf ./ffmpeg-4.4-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-0-0.zip cd ~ 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.2--> <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.2--> <PhoronixTestSuite> <TestInformation> <Title>dav1d</Title> <AppVersion>1.0</AppVersion> <Description>Dav1d is an open-source, speedy AV1 video decoder. 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.12.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>http://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>