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.7.1
pts/dav1d-1.7.1
- 09 January 2021 -
Update to latest dav1d hash.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.2.0--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://ffmpeg.org/releases/ffmpeg-4.2.1.tar.bz2</URL> <MD5>f3cba622990c8ac8a57330f571db1230</MD5> <SHA256>682a9fa3f6864d7f0dbf224f86b129e337bc60286e0d00dffcd710998d521624</SHA256> <FileName>ffmpeg-4.2.1.tar.bz2</FileName> <FileSize>10953293</FileSize> <PlatformSpecific>Linux, BSD</PlatformSpecific> </Package> <Package> <URL>http://downloads.videolan.org/pub/videolan/dav1d/0.8.1/dav1d-0.8.1.tar.xz</URL> <MD5>492517d01b72256774d1389e5f891ab2</MD5> <SHA256>a4b503063d411dd129f5eb43616675e613b36ac0aa1e449976d645c05add21ea</SHA256> <FileName>dav1d-0.8.1.tar.xz</FileName> <FileSize>571240</FileSize> <PlatformSpecific>Linux, BSD</PlatformSpecific> </Package> <Package> <URL>http://www.elecard.com/storage/video/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.elecard.com/storage/video/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>http://github.com/advancedfx/ffmpeg.zeranoe.com-builds-mirror/raw/main/ffmpeg-4.2.1-win64-static.zip</URL> <MD5>ae19c3a0006e4f1f34c5f3910bfb3635</MD5> <SHA256>d2af87bbb867bc83c070f3c1a980daaed35c37b02ca82cc2886e8743232886ff</SHA256> <FileName>ffmpeg-4.2.1-win64-static.zip</FileName> <FileSize>71475092</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> <Package> <URL>http://phoronix-test-suite.com/benchmark-files/dav1d-build-win64-0-8-1.zip</URL> <MD5>99cf657d12290685d860481dcb78e1b3</MD5> <SHA256>26ffd0afbda0bf7a2fde66138714c7a42ad76b5a24f790aa7e2f6a098dbbdf4a</SHA256> <FileName>dav1d-build-win64-0-8-1.zip</FileName> <FileSize>1746357</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 -xjf ffmpeg-4.2.1.tar.bz2 mkdir ffmpeg_/ cd ffmpeg-4.2.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-4.2.1 rm -rf ffmpeg_ # Build Dav1d tar -xf dav1d-0.8.1.tar.xz cd dav1d-0.8.1 meson build --buildtype release ninja -C build echo $? > ~/install-exit-status cd ~ echo "#!/bin/sh ./dav1d-0.8.1/build/tools/dav1d \$@ --muxer null --framethreads \$NUM_CPU_CORES --tilethreads 4 --filmgrain 0 > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > dav1d chmod +x dav1d
install_windows.sh
#!/bin/sh unzip -o ffmpeg-4.2.1-win64-static.zip ./ffmpeg-4.2.1-win64-static/bin/ffmpeg.exe -i Stream2_AV1_HD_6.8mbps.webm -vcodec copy -an -f ivf summer_nature_1080p.ivf ./ffmpeg-4.2.1-win64-static/bin/ffmpeg.exe -i Stream2_AV1_4K_22.7mbps.webm -vcodec copy -an -f ivf summer_nature_4k.ivf ./ffmpeg-4.2.1-win64-static/bin/ffmpeg.exe -i Chimera-AV1-8bit-1920x1080-6736kbps.mp4 -vcodec copy -an -f ivf chimera_8b_1080p.ivf ./ffmpeg-4.2.1-win64-static/bin/ffmpeg.exe -i Chimera-AV1-10bit-1920x1080-6191kbps.mp4 -vcodec copy -an -f ivf chimera_10b_1080p.ivf rm -rf ffmpeg-4.2.1-win64-static unzip -o dav1d-build-win64-0-8-1.zip cd ~ echo "#!/bin/sh ./build/dav1d_install/bin/dav1d.exe \$@ --muxer null --framethreads \$NUM_CPU_CORES --tilethreads 4 --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.2.0m3--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Decoded 8929 8929 frames (100.0%) - #_RESULT_# 25 fps (9.20x)</OutputTemplate> <LineHint>fps</LineHint> <MultiMatch>AVERAGE</MultiMatch> <TurnCharsToSpace>/</TurnCharsToSpace> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.2.0--> <PhoronixTestSuite> <TestInformation> <Title>dav1d</Title> <AppVersion>0.8.1</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.7.1</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>http://code.videolan.org/videolan/dav1d</ProjectURL> <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>