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
Mobile Neural Network
ACES DGEMM
NWChem
SuperTuxKart
ASTC Encoder
SVT-AV1
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
x264 2.6.0
pts/x264-2.6.0
- 19 February 2020 -
Update against upstream, use system nasm.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.4.0m3--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://download.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-20191217-2245.tar.bz2</URL> <MD5>6d6b7b49518ddfd42c4e3577b5242b31</MD5> <SHA256>0bb67d095513391e637b3b47e8efc3ba4603c3844f1b4c2690f4d36da7763055</SHA256> <FileName>x264-snapshot-20191217-2245.tar.bz2</FileName> <FileSize>774081</FileSize> </Package> <Package> <URL>http://www.nasm.us/pub/nasm/releasebuilds/2.13.01/nasm-2.13.01.tar.bz2</URL> <MD5>1f7d4662040d24351df7d6719ed4f97a</MD5> <SHA256>08f97baf0a7f892128c6413cfa93b69dc5825fbbd06c70928aea028835d198fa</SHA256> <FileName>nasm-2.13.01.tar.bz2</FileName> <FileSize>966295</FileSize> </Package> <Package> <URL>http://ultravideo.cs.tut.fi/video/Bosphorus_1920x1080_120fps_420_8bit_YUV_Y4M.7z</URL> <MD5>84ae521c95aa2537e16b34bbf72f2def</MD5> <SHA256>e2f60b904789a60f6d1edc194d8540d401dd882e3ee3605b9b1de8feacc72133</SHA256> <FileName>Bosphorus_1920x1080_120fps_420_8bit_YUV_Y4M.7z</FileName> <FileSize>676792531</FileSize> </Package> <Package> <URL>http://download.videolan.org/pub/videolan/x264/binaries/win64/x264-r2969-d4099dd.exe</URL> <MD5>1e813412142daeb423923685b35a3783</MD5> <SHA256>ad51fdad190341da74315701edfc9a2b1937ae9d5666b04c98c194401610c9bf</SHA256> <FileName>x264-r2969-d4099dd.exe</FileName> <FileSize>19503104</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh mkdir x264_/ if [ $OS_TYPE = "BSD" ] then gmake -j $NUM_CPU_CORES gmake install BASH_BIN=/usr/local/bin/bash else make -j $NUM_CPU_CORES make install BASH_BIN=/bin/bash fi cd ~ tar -xjf x264-snapshot-20191217-2245.tar.bz2 cd x264-snapshot-20191217-2245 PATH="$HOME/x264_/bin:$PATH" $BASH_BIN configure --prefix=$HOME/x264_/ --disable-opencl --enable-pic --enable-shared if [ $OS_TYPE = "BSD" ] then PATH="$HOME/x264_/bin:$PATH" gmake -j $NUM_CPU_CORES gmake install else PATH="$HOME/x264_/bin:$PATH" make -j $NUM_CPU_CORES make install fi echo $? > ~/install-exit-status cd ~ rm -rf x264-snapshot-20191217-2245 7z x Bosphorus_1920x1080_120fps_420_8bit_YUV_Y4M.7z echo "#!/bin/sh ./x264_/bin/x264 -o /dev/null --slow --threads \$NUM_CPU_CORES Bosphorus_1920x1080_120fps_420_8bit_YUV.y4m > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > x264 chmod +x x264
install_windows.sh
#!/bin/sh 7z x Bosphorus_1920x1080_120fps_420_8bit_YUV_Y4M.7z echo "#!/bin/sh ./x264-r2969-d4099dd.exe -o output --slow --threads \$NUM_CPU_CORES Bosphorus_1920x1080_120fps_420_8bit_YUV.y4m > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > x264 chmod +x x264
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.4.0m3--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>encoded 600 frames, #_RESULT_# fps, 4221.95 kb/s</OutputTemplate> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.4.0m3--> <PhoronixTestSuite> <TestInformation> <Title>x264</Title> <AppVersion>2019-12-17</AppVersion> <Description>This is a simple test of the x264 encoder run on the CPU (OpenCL support disabled) with a sample video file.</Description> <ResultScale>Frames Per Second</ResultScale> <Proportion>HIB</Proportion> <SubTitle>H.264 Video Encoding</SubTitle> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>2.6.0</Version> <SupportedPlatforms>Linux, Windows, BSD</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, p7zip, yasm, nasm</ExternalDependencies> <EnvironmentSize>2600</EnvironmentSize> <ProjectURL>http://www.videolan.org/developers/x264.html</ProjectURL> <InternalTags>SMP</InternalTags> <Maintainer>Michael Larabel</Maintainer> </TestProfile> </PhoronixTestSuite>