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.1.0
pts/dav1d-1.1.0
- 15 January 2019 -
Use null mixer for video output.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.6.0m1--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://ffmpeg.org/releases/ffmpeg-4.0.2.tar.bz2</URL> <MD5>5576e8a22f80b6a336db39808f427cfb</MD5> <SHA256>346c51735f42c37e0712e0b3d2f6476c86ac15863e4445d9e823fe396420d056</SHA256> <FileName>ffmpeg-4.0.2.tar.bz2</FileName> <FileSize>10424065</FileSize> </Package> <Package> <URL>http://downloads.videolan.org/pub/videolan/dav1d/0.1.0/dav1d-0.1.0.tar.xz</URL> <MD5>5e14d96fb3dbdb50eb805fa5064a3b4a</MD5> <SHA256>4ce7cdb0d3eda131306dd35d6d8df18d91d7e17fcb549863f68b21af5aa48037</SHA256> <FileName>dav1d-0.1.0.tar.xz</FileName> <FileSize>309236</FileSize> </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> </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.0.2.tar.bz2 mkdir ffmpeg_/ cd ffmpeg-4.0.2/ ./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 rm -rf ffmpeg-4.0.2 rm -rf ffmpeg_ # Build Dav1d tar -xf dav1d-0.1.0.tar.xz cd dav1d-0.1.0 meson build --buildtype release ninja -C build echo $? > ~/install-exit-status cd ~ echo "#!/bin/sh ./dav1d-0.1.0/build/tools/dav1d \$@ --muxer null --framethreads \$NUM_CPU_CORES --tilethreads 4 echo \$? > ~/test-exit-status" > dav1d chmod +x dav1d
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.6.0m1--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.6.0m1--> <PhoronixTestSuite> <TestInformation> <Title>dav1d</Title> <AppVersion>0.1</AppVersion> <Description>Dav1d is an open-source, speedy AV1 video decoder. This test profile times how long it takes to decode some sample AV1 video content.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.1.0</Version> <SupportedPlatforms>Linux, BSD</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, yasm, meson</ExternalDependencies> <EnvironmentSize>1100</EnvironmentSize> <ProjectURL>http://code.videolan.org/videolan/dav1d</ProjectURL> <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> </Menu> </Option> </TestSettings> </PhoronixTestSuite>