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
LAME MP3 Encoding 1.7.3
pts/encode-mp3-1.7.3
- 17 January 2019 -
Add Windows support.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.6.0m1--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://ftp.osuosl.org/pub/blfs/conglomeration/lame/lame-3.100.tar.gz, http://fossies.org/linux/misc/lame-3.100.tar.gz, http://sourceforge.mirrorservice.org/l/la/lame/lame/3.100/lame-3.100.tar.gz</URL> <MD5>83e260acbe4389b54fe08e0bdbf7cddb</MD5> <SHA256>ddfe36cab873794038ae2c1210557ad34857a4b6bdc515785d1da9e175b1da1e</SHA256> <FileName>lame-3.100.tar.gz</FileName> <FileSize>1524133</FileSize> </Package> <Package> <URL>http://www.rarewares.org/files/mp3/lame3.100-64.zip</URL> <MD5>2840af30efa75686f4e250573beb15a3</MD5> <SHA256>c9cddf1650fff0ebe0ba79de794b1fa9b334f43f08e2d365b7a158941ad78fa7</SHA256> <FileName>lame3.100-64.zip</FileName> <FileSize>1442273</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh mkdir $HOME/lame_ tar -zxvf lame-3.100.tar.gz cd lame-3.100/ cat > power9-fix.patch <<EOT --- configure.in.old 2017-08-15 11:16:31.000000000 -0400 +++ configure.in 2018-09-23 19:41:40.012250933 -0400 @@ -94,9 +94,9 @@ if test "\${HAVE_GCC}" = "yes"; then AC_MSG_CHECKING(version of GCC) - GCC_version="\`\${CC} --version | sed -n '1s/^[[^ ]]* (.*) //;s/ .*\$//;1p'\`" + GCC_version="\`\${CC} --version | head -n1 | awk '{print \$3}' \`" case "\${GCC_version}" in - [0-9]*[0-9]*) + [[0-9]]*[[0-9]]*) AC_MSG_RESULT(\${GCC_version}) ;; *) @@ -701,7 +701,7 @@ AC_DEFINE(TAKEHIRO_IEEE754_HACK, 1, IEEE754 compatible machine) AC_DEFINE(USE_FAST_LOG, 1, faster log implementation with less but enough precission) ;; -powerpc) +powerpc*|ppc64*) CPUTYPE="no" # use internal knowledge of the IEEE 754 layout EOT patch -p0 < power9-fix.patch ./configure --prefix=$HOME/lame_ --enable-expopt=full make echo $? > ~/install-exit-status make install cd ~ #rm -rf lame-3.100/ echo "#!/bin/sh ./lame_/bin/lame -h \$TEST_EXTENDS/pts-trondheim.wav /dev/null 2>&1 echo \$? > ~/test-exit-status" > lame chmod +x lame
install_windows.sh
#!/bin/sh unzip -o lame3.100-64.zip mv lame.exe lame_run.exe echo "#!/bin/sh ./lame_run.exe -h \$TEST_EXTENDS/pts-trondheim.wav null 2>&1 echo \$? > ~/test-exit-status" > lame chmod +x lame
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.6.0m1--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.6.0m1--> <PhoronixTestSuite> <TestInformation> <Title>LAME MP3 Encoding</Title> <AppVersion>3.100</AppVersion> <Description>LAME is an MP3 encoder licensed under the LGPL. This test measures the time required to encode a WAV file to MP3 format.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <SubTitle>WAV To MP3</SubTitle> <Executable>lame</Executable> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.7.3</Version> <SupportedPlatforms>Linux, Solaris, MacOSX, BSD, Windows</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities</ExternalDependencies> <Extends>pts/timed-audio-encode</Extends> <EnvironmentSize>5</EnvironmentSize> <ProjectURL>http://lame.sourceforge.net/</ProjectURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> </PhoronixTestSuite>