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.3.0
pts/avifenc-1.3.0
- 14 October 2022 -
Update against avifenc 0.11 upstream.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://www.phoronix-test-suite.com/benchmark-files/aom-350.tar.xz</URL> <MD5>4bad477efe71208b0a190efd1fc5da8b</MD5> <SHA256>7d4d88d2b0cea58243aa422f5ee4656a676b8a74170fbc29a2f36eb310446740</SHA256> <FileName>aom-350.tar.xz</FileName> <FileSize>3690192</FileSize> </Package> <Package> <URL>https://github.com/AOMediaCodec/libavif/archive/refs/tags/v0.11.0.tar.gz</URL> <MD5>3543909d50a7c747f564e07f4b0783b4</MD5> <SHA256>0c34937f5a1f2e105734dba2fc6dc4d9b12636e17964df705d3d96c5aa52667c</SHA256> <FileName>libavif-0.11.0.tar.gz</FileName> <FileSize>5824852</FileSize> </Package> <Package> <URL>http://www.phoronix-test-suite.com/benchmark-files/avifenc-011-windows.zip</URL> <MD5>b1b9cd8ee7bde0bb6c1a1ed691504a65</MD5> <SHA256>5bc10551c21e863d777ab6ba29b9c207acd0ed948728027ae0537791da706c48</SHA256> <FileName>avifenc-011-windows.zip</FileName> <FileSize>5099947</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.11.0.tar.gz cd libavif-0.11.0/ext tar -xf ~/aom-350.tar.xz mkdir aom/build.libavif cd aom/build.libavif export CXXFLAGS="-O3 -fPIC -Wno-error $CXXFLAGS" export CFLAGS="-O3 -fPIC -Wno-error $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.11.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.11.0/build/avifenc -j \$THREADCOUNT \$@ echo \$? > ~/test-exit-status " > avifenc chmod +x avifenc
install_windows.sh
#!/bin/sh unzip -o avifenc-011-windows.zip chmod +x avifenc-011.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.4--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <TestInformation> <Title>libavif avifenc</Title> <AppVersion>0.11</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.3.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>--autotiling 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>