Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Flexible IO Tester
Timed Linux Kernel Compilation
Llama.cpp
Blender
Hashcat
PostgreSQL
Newest Tests
OpenVINO GenAI
Rustls
Recently Updated Tests
NeatBench
OpenRadioss
QuantLib
GROMACS
AOM AV1
FLAC Audio Encoding
New & Recently Updated Tests
Recently Updated Suites
Machine Learning
Server Motherboard
HPC - High Performance Computing
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
libgav1 1.1.0
pts/libgav1-1.1.0
- 06 May 2021 -
Update against libgav1 0.16.3 upstream.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0m1--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://phoronix-test-suite.com/benchmark-files/libgav1-0163.tar.gz</URL> <MD5>8104cd1e971aa81b9fed76e0ae504a3b</MD5> <SHA256>34ceef6f648e0140f9188c143ecf00476599143cfab4b7d93b8b2e81af21b630</SHA256> <FileName>libgav1-0163.tar.gz</FileName> <FileSize>918930</FileSize> </Package> <Package> <URL>https://github.com/abseil/abseil-cpp/archive/refs/tags/20210324.1.tar.gz</URL> <MD5>f4d5342d294d1a397a46d6057901e66c</MD5> <SHA256>441db7c09a0565376ecacf0085b2d4c2bbedde6115d7773551bc116212c2a8d6</SHA256> <FileName>abseil-cpp-20210324.1.tar.gz</FileName> <FileSize>1774134</FileSize> </Package> <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> </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> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh # FFmpeg install to demux AV1 WebM to IVF that can then be consumed by dav1d/libgav1... 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 GAV1 tar -xf libgav1-0163.tar.gz mkdir build mkdir third_party tar -xf abseil-cpp-20210324.1.tar.gz mv abseil-cpp-20210324.1 third_party/abseil-cpp cd build cmake -G "Unix Makefiles" .. make -j $NUM_CPU_CORES echo $? > ~/install-exit-status cd ~ echo "#!/bin/sh ./build/gav1_decode --threads \$NUM_CPU_CORES \$@ -o /dev/null -v > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > libgav1 chmod +x libgav1
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0m1--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>time to decode input: 171277355 us (8929 frames, #_RESULT_# fps)</OutputTemplate> <LineHint>fps</LineHint> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0m1--> <PhoronixTestSuite> <TestInformation> <Title>libgav1</Title> <AppVersion>0.16.3</AppVersion> <Description>Libgav1 is an AV1 decoder developed by Google for AV1 profile 0/1 compliance.</Description> <ResultScale>FPS</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.1.0</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, cmake</ExternalDependencies> <EnvironmentSize>1200</EnvironmentSize> <ProjectURL>http://chromium.googlesource.com/codecs/libgav1/</ProjectURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Default> <Arguments> </Arguments> </Default> <Option> <DisplayName>Video Input</DisplayName> <Identifier>video</Identifier> <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>