We truncated the diff of some files because they were too big.
If you want to see the full diff for every file, click here.
Overview
Submit package home:Aloysius:branches:Essentials / x265 to package Essentials / x265
x265.changes
Changed
x
1
2
-------------------------------------------------------------------
3
+Tue Apr 28 20:08:06 UTC 2015 - aloisio@gmx.com
4
+
5
+- soname bumped to 51
6
+- Update to stable version 1.6
7
+ Perfomance changes:
8
+ * heavy improvements for AVX2 capable platforms
9
+ (Haswell and later Intel CPUs) and work efficiency
10
+ improvements for multiple-socket machines.
11
+
12
+ API changes:
13
+ * --threads N replaced by --pools N,N and --lookahead-slices N
14
+ * --[no-]rdoq-level N - finer control over RDOQ effort
15
+ * --min-cu-size N - trade-off compression for performance
16
+ * --max-tu-size N - trade-off compression for performance
17
+ * --[no-]temporal-layers - code unreferenced B frames in temporal
18
+ layer 1
19
+ * --[no-]cip aliases added for --[no-]constrained-intra
20
+ * Added support for new color transfer functions "smpte-st-2084"
21
+ and "smpte-st-428
22
+ * --limit-refs N was added, but not yet implemented
23
+ * Deprecated x265_setup_primitives() was removed from the public
24
+ API and is no longer exported DLLs
25
+
26
+ Threading changes:
27
+ * The x265 thread pool has been made NUMA aware.
28
+ * The --threads parameter, which used to specify a global
29
+ pool size, has been replaced with a --pools parameter which
30
+ allows you to specify a pool size per NUMA node (aka CPU socket
31
+ or package). The default is still to allocate one pool worker
32
+ thread per logical core on the machine, but with --pools one
33
+ can isolate those threads to a given socket.
34
+ * Other than socket isolation, the biggest visible change in the
35
+ NUMA aware thread pools is the increase in work efficiency.
36
+ The total utilization will generally decrease but the performance
37
+ will increase since worker threads spend less time context
38
+ switching. Also, the threading of the lookahead was made more
39
+ work-efficient. Each lookahead job is a much larger piece of work.
40
+ Before (1.5):
41
+ disable thread pool: --threads 1
42
+ default thread pool: --threads 0
43
+ restrict to 4 threads: --threads 4
44
+ After (1.6):
45
+ disable thread pools: --pools 0
46
+ default thread pools: --pools *
47
+ restrict to 4 threads: --pools 4
48
+ restrict to 4 threads on socket 1: --pools -,4
49
+ restrict to all threads on socket 0: --pools +,-
50
+
51
+ Multi-lib interface:
52
+ * In order to support runtime selection of a libx265
53
+ shared library, we have introduced an x265_api structure
54
+ and an x265_api_get() function. Applications which use
55
+ this interface to acquire the libx265 functional interface
56
+ will be able to use shim libraries to bind a particular build
57
+ of libx265 at run time. See the API documentation for full
58
+ details.
59
+
60
+-------------------------------------------------------------------
61
Sun Feb 22 09:07:11 UTC 2015 - aloisio@gmx.com
62
63
- soname bump
64
x265.spec
Changed
23
1
2
# based on the spec file from https://build.opensuse.org/package/view_file/home:Simmphonie/libx265/
3
4
Name: x265
5
-%define soname 43
6
+%define soname 51
7
%define libname lib%{name}
8
%define libsoname %{libname}-%{soname}
9
-Version: 1.5
10
+Version: 1.6
11
Release: 0
12
License: GPL-2.0+
13
Summary: A free h265/HEVC encoder - encoder binary
14
15
%prep
16
%setup -q -n "%{name}_%{version}/build/linux"
17
cd ../..
18
-%patch0 -p1
19
+%patch0
20
cd -
21
%define FAKE_BUILDDATE %(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes '+%%b %%e %%Y')
22
sed -i -e "s/0.0/%{soname}.0/g" ../../source/cmake/version.cmake
23
arm.patch
Changed
39
1
2
-diff -urN a/source/CMakeLists.txt b/source/CMakeLists.txt
3
---- a/source/CMakeLists.txt 2015-02-10 14:15:13.000000000 -0700
4
-+++ b/source/CMakeLists.txt 2015-02-12 06:25:01.334927114 -0700
5
-@@ -46,10 +46,18 @@
6
+--- source/CMakeLists.txt.orig 2015-04-28 21:43:18.585528552 +0200
7
++++ source/CMakeLists.txt 2015-04-28 21:47:14.995334232 +0200
8
+@@ -50,10 +50,18 @@
9
set(X64 1)
10
add_definitions(-DX86_64=1)
11
endif()
12
13
else()
14
message(STATUS "CMAKE_SYSTEM_PROCESSOR value `${CMAKE_SYSTEM_PROCESSOR}` is unknown")
15
message(STATUS "Please add this value near ${CMAKE_CURRENT_LIST_FILE}:${CMAKE_CURRENT_LIST_LINE}")
16
-@@ -133,8 +141,8 @@
17
- if(X86 AND NOT X64)
18
+@@ -155,8 +163,8 @@
19
+ elseif(X86 AND NOT X64)
20
add_definitions(-march=i686)
21
endif()
22
- if(ARM)
23
24
+ if(ARMV7)
25
+ add_definitions(-fPIC)
26
endif()
27
- check_cxx_compiler_flag(-Wno-narrowing CC_HAS_NO_NARROWING)
28
- check_cxx_compiler_flag(-Wno-array-bounds CC_HAS_NO_ARRAY_BOUNDS)
29
-diff -urN a/source/common/cpu.cpp b/source/common/cpu.cpp
30
---- a/source/common/cpu.cpp 2015-02-10 14:15:13.000000000 -0700
31
-+++ b/source/common/cpu.cpp 2015-02-12 06:25:01.334927114 -0700
32
+ if(FPROFILE_GENERATE)
33
+ if(INTEL_CXX)
34
+--- source/common/cpu.cpp.orig 2015-04-28 21:47:44.634923269 +0200
35
++++ source/common/cpu.cpp 2015-04-28 21:49:50.305468867 +0200
36
@@ -37,7 +37,7 @@
37
#include <machine/cpu.h>
38
#endif
39
baselibs.conf
Changed
4
1
2
-libx265-43
3
+libx265-51
4
x265_1.5.tar.gz -> x265_1.6.tar.gz
Changed
Refresh
Refresh
Login required, please
login
or
signup
in order to comment
Request History
Aloysius created request almost 10 years ago
Update to version 1.6.
scarabeus accepted request almost 10 years ago
Thanks. Looks okay. :)