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
Ogg Audio Encoding 1.6.0
pts/encode-ogg-1.6.0
- 20 December 2020 -
Update against upstream.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.2.0m2--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://downloads.xiph.org/releases/ogg/libogg-1.3.4.tar.gz, https://ftp.osuosl.org/pub/xiph/releases/ogg/libogg-1.3.4.tar.gz</URL> <MD5>b9a66c80bdf45363605e4aa75fa951a8</MD5> <SHA256>fe5670640bd49e828d64d2879c31cb4dde9758681bb664f9bdbf159a01b0c76e</SHA256> <FileName>libogg-1.3.4.tar.gz</FileName> <FileSize>589570</FileSize> </Package> <Package> <URL>https://downloads.xiph.org/releases/vorbis/libvorbis-1.3.7.tar.gz, https://ftp.osuosl.org/pub/xiph/releases/vorbis/libvorbis-1.3.7.tar.gz</URL> <MD5>9b8034da6edc1a17d18b9bc4542015c7</MD5> <SHA256>0e982409a9c3fc82ee06e08205b1355e5c6aa4c36bca58146ef399621b0ce5ab</SHA256> <FileName>libvorbis-1.3.7.tar.gz</FileName> <FileSize>1658963</FileSize> </Package> <Package> <URL>https://downloads.xiph.org/releases/vorbis/vorbis-tools-1.4.0.tar.gz, https://ftp.osuosl.org/pub/xiph/releases/vorbis/vorbis-tools-1.4.0.tar.gz</URL> <MD5>567e0fb8d321b2cd7124f8208b8b90e6</MD5> <SHA256>a389395baa43f8e5a796c99daf62397e435a7e73531c9f44d9084055a05d22bc</SHA256> <FileName>vorbis-tools-1.4.0.tar.gz</FileName> <FileSize>1346532</FileSize> </Package> <Package> <URL>http://www.lindberg.no/hires/test/2L38_01_192kHz.flac</URL> <MD5>c561bb980051336da2409f5eb5628e7e</MD5> <SHA256>9dae8590821cbed0f47dce71076b34a749bc823412686c17b59703c3c821db8d</SHA256> <FileName>2L38_01_192kHz.flac</FileName> <FileSize>354537588</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh mkdir $HOME/vorbis # Force use of new libs. CPPFLAGS="-I$HOME/vorbis/include $CPPFLAGS" LDFLAGS="-L$HOME/vorbis/lib $LDFLAGS" tar -xf libogg-1.3.4.tar.gz tar -xf libvorbis-1.3.7.tar.gz tar -xf vorbis-tools-1.4.0.tar.gz cd libogg-1.3.4/ ./configure --prefix=$HOME/vorbis make -j $NUM_CPU_CORES make install cd ~ export PKG_CONFIG_PATH=$HOME/vorbis/lib/pkgconfig:$PKG_CONFIG_PATH cd libvorbis-1.3.7/ ./configure --prefix=$HOME/vorbis --with-ogg-includes=$HOME/vorbis/include/ogg --with-ogg-libraries=$HOME/vorbis/lib make -j $NUM_CPU_CORES make install cd ~ #rm -rf libvorbis-1.3.7/ cd vorbis-tools-1.4.0/ ./configure --prefix=$HOME/vorbis --with-ogg-includes=$HOME/vorbis/include/ogg --with-ogg-libraries=$HOME/vorbis/lib --with-vorbis-includes=$HOME/vorbis/include/vorbis --with-vorbis-libraries=$HOME/vorbis/lib make -j $NUM_CPU_CORES echo $? > ~/install-exit-status make install cd ~ #rm -rf vorbis-tools-1.4.0/ echo "#!/bin/sh ./vorbis/bin/oggenc 2L38_01_192kHz.flac -q 10 -o /dev/null > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > oggenc chmod +x oggenc
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.2.0m2--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.2.0m2--> <PhoronixTestSuite> <TestInformation> <Title>Ogg Audio Encoding</Title> <AppVersion>1.3.4</AppVersion> <Description>This test times how long it takes to encode a sample WAV file to Ogg format using the reference Xiph.org tools/libraries.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <SubTitle>WAV To Ogg</SubTitle> <Executable>oggenc</Executable> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.6.0</Version> <SupportedPlatforms>Linux, Solaris, MacOSX, BSD</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities</ExternalDependencies> <Extends>pts/timed-audio-encode</Extends> <EnvironmentSize>6</EnvironmentSize> <ProjectURL>http://www.vorbis.com/</ProjectURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> </PhoronixTestSuite>