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
libavif avifenc 1.1.1
pts/avifenc-1.1.1
- 23 February 2021 -
Limit job count to 64 otherwise the program exits abnormally.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.2.2--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://www.phoronix-test-suite.com/benchmark-files/aom-202.tar.xz</URL> <MD5>06c752b6ab94cda3b2f52055b3becf2e</MD5> <SHA256>001506a7a203392151105507fb3ebdbdecbdb871d947958b786b93655ea75118</SHA256> <FileName>aom-202.tar.xz</FileName> <FileSize>2391260</FileSize> </Package> <Package> <URL>https://github.com/AOMediaCodec/libavif/archive/v0.9.0.tar.gz</URL> <MD5>6f2e8c6f9f1c7cf99ff6be934ea1ccf8</MD5> <SHA256>ea1603fc18e7dd20cf01f0b405156576886ecb5df84db8c0e87187cd2f8a00f4</SHA256> <FileName>libavif-0.9.0.tar.gz</FileName> <FileSize>2961252</FileSize> </Package> <Package> <URL>https://github.com/AOMediaCodec/libavif/releases/download/v0.9.0/avifenc.exe</URL> <MD5>245c5cc5c219439fc767efef54778b13</MD5> <SHA256>753b8ed9f292c95acc7600345e5c4ff765337587ced9cea2058cf6272fe0fb2f</SHA256> <FileName>avifenc-090.exe</FileName> <FileSize>10463232</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> <Package> <URL>http://phoronix-test-suite.com/benchmark-files/sample-photo-6000x4000-1.zip</URL> <MD5>3da40124023e94f63d96c22c07e7e9c2</MD5> <SHA256>cadcd434abcdc82a220e7022c749b6fa5f46bb7a32ec14423ca8aab067b0e989</SHA256> <FileName>sample-photo-6000x4000-1.zip</FileName> <FileSize>7824306</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf libavif-0.9.0.tar.gz cd libavif-0.9.0/ext tar -xf ~/aom-202.tar.xz mkdir aom/build.libavif cd aom/build.libavif export CXXFLAGS="-O3 -fPIC" export CFLAGS="-O3 -fPIC" cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DENABLE_DOCS=0 -DENABLE_EXAMPLES=0 -DENABLE_TESTDATA=0 -DENABLE_TESTS=0 -DENABLE_TOOLS=0 .. ninja echo $? > ~/install-exit-status cd ~/libavif-0.9.0/ mkdir build cd build cmake -DAVIF_CODEC_AOM=1 -DAVIF_LOCAL_AOM=1 -DAVIF_BUILD_APPS=1 .. make -j $NUM_CPU_CORES echo $? > ~/install-exit-status cd ~ unzip -o sample-photo-6000x4000-1.zip echo "#!/bin/bash THREADCOUNT=\$((\$NUM_CPU_CORES>64?64:\$NUM_CPU_CORES)) ./libavif-0.9.0/build/avifenc -j \$THREADCOUNT \$@ echo \$? > ~/test-exit-status " > avifenc chmod +x avifenc
install_windows.sh
#!/bin/sh chmod +x avifenc-090.exe unzip -o sample-photo-6000x4000-1.zip echo "#!/bin/bash THREADCOUNT=\$((\$NUM_CPU_CORES>64?64:\$NUM_CPU_CORES)) ./avifenc-090.exe -j \$THREADCOUNT \$@" > avifenc chmod +x avifenc
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.2.2--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.2.2--> <PhoronixTestSuite> <TestInformation> <Title>libavif avifenc</Title> <AppVersion>0.9.0</AppVersion> <Description>This is a test of the AOMedia libavif library testing the encoding of a JPEG image to AV1 Image Format (AVIF).</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.1.1</Version> <SupportedPlatforms>Linux, MacOSX, BSD, Windows</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, cmake, perl, yasm, meson, nasm, libpng-development, jpeg-development</ExternalDependencies> <EnvironmentSize>70</EnvironmentSize> <ProjectURL>https://github.com/AOMediaCodec/libavif/</ProjectURL> <InternalTags>SMP</InternalTags> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Default> <PostArguments> sample-photo-6000x4000.JPG output.avif</PostArguments> </Default> <Option> <DisplayName>Encoder Speed</DisplayName> <Identifier>enc-mode</Identifier> <Menu> <Entry> <Name>0</Name> <Value>-s 0</Value> <Message>Slowest</Message> </Entry> <Entry> <Name>2</Name> <Value>-s 2</Value> <Message>Slow</Message> </Entry> <Entry> <Name>6</Name> <Value>-s 6</Value> <Message>Default</Message> </Entry> <Entry> <Name>6, Lossless</Name> <Value>-s 6 -l</Value> <Message>Default Speed + Lossless</Message> </Entry> <Entry> <Name>10</Name> <Value>-s 10</Value> <Message>Fastest</Message> </Entry> <Entry> <Name>10, Lossless</Name> <Value>-s 10 -l</Value> <Message>Fastest</Message> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>