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
libavif avifenc 1.2.0
pts/avifenc-1.2.0
- 06 April 2022 -
Update against libavif 0.10 upstream new release.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.2--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://www.phoronix-test-suite.com/benchmark-files/aom-330.tar.xz</URL> <MD5>b14a0623e47b4b3ee928fec3340688eb</MD5> <SHA256>e32baa430e2fdba7f366a43d4266bdc50a9a5b6e503f56779c97e810502c0c0c</SHA256> <FileName>aom-330.tar.xz</FileName> <FileSize>3382120</FileSize> </Package> <Package> <URL>https://github.com/AOMediaCodec/libavif/archive/refs/tags/v0.10.0.tar.gz</URL> <MD5>42e783d32c8d5ae2d763edccebcc63a5</MD5> <SHA256>d289e5029cb3853630ca85716b25b5fb9cdec51f8bd537b05f43b3325b480ab0</SHA256> <FileName>libavif-0.10.0.tar.gz</FileName> <FileSize>2961252</FileSize> </Package> <Package> <URL>http://www.phoronix-test-suite.com/benchmark-files/avifenc-010-windows.zip</URL> <MD5>b6ec463d1d066421bf3a9ce9939eb495</MD5> <SHA256>b401a17714506000defa7eb050da7975e309051b6d0e2bc75a90031907aa50c9</SHA256> <FileName>avifenc-010-windows.zip</FileName> <FileSize>8450620</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> <Package> <URL>http://upload.wikimedia.org/wikipedia/commons/2/2c/Mars_topography_%28MOLA_dataset%29_with_poles_HiRes.jpg</URL> <MD5>033f3dfec0031912d39bcfb48679ae85</MD5> <SHA256>21aaf7b1b7d324cc4e79f779de4e277d861e4dbd445a08846cd13dd3c81ed345</SHA256> <FileName>sample-photo-mars.jpg</FileName> <FileSize>20369694</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf libavif-0.10.0.tar.gz cd libavif-0.10.0/ext tar -xf ~/aom-330.tar.xz mkdir aom/build.libavif cd aom/build.libavif export CXXFLAGS="-O3 -fPIC $CXXFLAGS" export CFLAGS="-O3 -fPIC $CFLAGS" 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.10.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 ~ echo "#!/bin/bash THREADCOUNT=\$((\$NUM_CPU_CORES>64?64:\$NUM_CPU_CORES)) ./libavif-0.10.0/build/avifenc -j \$THREADCOUNT \$@ echo \$? > ~/test-exit-status " > avifenc chmod +x avifenc
install_windows.sh
#!/bin/sh unzip -o avifenc-010-windows.zip mv avifenc.exe avifenc-010.exe chmod +x avifenc-010.exe echo "#!/bin/bash THREADCOUNT=\$((\$NUM_CPU_CORES>64?64:\$NUM_CPU_CORES)) ./avifenc-010.exe -j \$THREADCOUNT \$@" > avifenc chmod +x avifenc
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.2--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.2--> <PhoronixTestSuite> <TestInformation> <Title>libavif avifenc</Title> <AppVersion>0.10</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.2.0</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> <RepositoryURL>https://github.com/AOMediaCodec/libavif</RepositoryURL> <InternalTags>SMP</InternalTags> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Default> <PostArguments> sample-photo-mars.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, Lossless</Name> <Value>-s 10 -l</Value> <Message>Faster</Message> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>