Overview

Request 2246 (accepted)

Update to 1.8

Submit package home:Aloysius:branches:Essentials / x265 to package Essentials / x265

x265.changes Changed
x
 
1
@@ -1,4 +1,47 @@
2
 -------------------------------------------------------------------
3
+Fri Nov 27 18:21:04 UTC 2015 - aloisio@gmx.com
4
+
5
+- Update to version 1.8:
6
+  API Changes:
7
+  * Experimental support for Main12 is now enabled. Partial
8
+    assembly support exists.
9
+  * Main12 and Intra/Still picture profiles are now supported.
10
+    Still picture profile is detected based on
11
+    x265_param::totalFrames.
12
+  * Three classes of encoding statistics are now available
13
+    through the API.
14
+    + x265_stats - contains encoding statistics, available
15
+      through x265_encoder_get_stats()
16
+    + x265_frame_stats and x265_cu_stats - contains frame
17
+      encoding statistics, available through recon x265_picture
18
+  * --csv
19
+  * x265_encoder_log() is now deprecated
20
+  * x265_param::csvfn is also deprecated
21
+  * --log-level now controls only console logging, frame
22
+    level console logging has been removed.
23
+  * Support added for new color transfer characteristic ARIB
24
+    STD-B67
25
+  New Features:
26
+  * limit-refs
27
+    + This feature limits the references analysed for
28
+      individual CUS.
29
+    + Provides a nice tradeoff between efficiency and
30
+      performance.
31
+    + aq-mode 3
32
+  * A new aq-mode that provides additional biasing for
33
+    low-light conditions.
34
+  * An improved scene cut detection logic that allows
35
+    ratecontrol to manage visual quality at fade-ins and
36
+    fade-outs better.
37
+  Preset and Tune Options:
38
+  * tune grain
39
+    + Increases psyRdoq strength to 10.0, and rdoq-level to 2.
40
+    + qg-size
41
+  * Default value changed to 32.
42
+- soname bump to 68
43
+- Reworked arm.patch for 1.8
44
+
45
+-------------------------------------------------------------------
46
 Fri May 29 09:11:02 UTC 2015 - aloisio@gmx.com
47
 
48
 - soname bump to 59
49
x265.spec Changed
26
 
1
@@ -1,10 +1,10 @@
2
 # based on the spec file from https://build.opensuse.org/package/view_file/home:Simmphonie/libx265/
3
 
4
 Name:           x265
5
-%define soname  59
6
+%define soname  68
7
 %define libname lib%{name}
8
 %define libsoname %{libname}-%{soname}
9
-Version:        1.7
10
+Version:        1.8
11
 Release:        0
12
 License:        GPL-2.0+
13
 Summary:        A free h265/HEVC encoder - encoder binary
14
@@ -43,9 +43,9 @@
15
 streams. 
16
 
17
 %prep
18
-%setup -q -n "%{name}_%{version}/build/linux"
19
+%setup -q -n "%{name}_11047/build/linux"
20
 cd ../..
21
-%patch0
22
+%patch0 -p1
23
 cd -
24
 %define FAKE_BUILDDATE %(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes '+%%b %%e %%Y')
25
 sed -i -e "s/0.0/%{soname}.0/g" ../../source/cmake/version.cmake
26
arm.patch Changed
69
 
1
@@ -1,9 +1,11 @@
2
---- source/CMakeLists.txt.orig 2015-04-28 21:43:18.585528552 +0200
3
-+++ source/CMakeLists.txt  2015-04-28 21:47:14.995334232 +0200
4
-@@ -50,10 +50,18 @@
5
-         set(X64 1)
6
-         add_definitions(-DX86_64=1)
7
-     endif()
8
+Index: x265_11047/source/CMakeLists.txt
9
+===================================================================
10
+--- x265_11047.orig/source/CMakeLists.txt
11
++++ x265_11047/source/CMakeLists.txt
12
+@@ -56,10 +56,22 @@ elseif(POWERMATCH GREATER "-1")
13
+     message(STATUS "Detected POWER target processor")
14
+     set(POWER 1)
15
+     add_definitions(-DX265_ARCH_POWER=1)
16
 +elseif(${SYSPROC} MATCHES "armv5.*")
17
 +    message(STATUS "Detected ARMV5 system processor")
18
 +    set(ARMV5 1)
19
@@ -19,10 +21,14 @@
20
 +    message(STATUS "Detected ARMV7 system processor")
21
 +    set(ARMV7 1)
22
 +    add_definitions(-DX265_ARCH_ARM=1 -DHAVE_ARMV6=1 -DHAVE_NEON=0)
23
++elseif(${SYSPROC} STREQUAL "aarch64")
24
++    message(STATUS "Detected AArch64 system processor")
25
++    set(ARMV7 1)
26
++    add_definitions(-DX265_ARCH_ARM=1 -DHAVE_ARMV6=1 -DHAVE_NEON=0)
27
  else()
28
      message(STATUS "CMAKE_SYSTEM_PROCESSOR value `${CMAKE_SYSTEM_PROCESSOR}` is unknown")
29
      message(STATUS "Please add this value near ${CMAKE_CURRENT_LIST_FILE}:${CMAKE_CURRENT_LIST_LINE}")
30
-@@ -155,8 +163,8 @@
31
+@@ -169,8 +181,8 @@ if(GCC)
32
      elseif(X86 AND NOT X64)
33
          add_definitions(-march=i686)
34
      endif()
35
@@ -33,8 +39,10 @@
36
      endif()
37
      if(FPROFILE_GENERATE)
38
          if(INTEL_CXX)
39
---- source/common/cpu.cpp.orig 2015-04-28 21:47:44.634923269 +0200
40
-+++ source/common/cpu.cpp  2015-04-28 21:49:50.305468867 +0200
41
+Index: x265_11047/source/common/cpu.cpp
42
+===================================================================
43
+--- x265_11047.orig/source/common/cpu.cpp
44
++++ x265_11047/source/common/cpu.cpp
45
 @@ -37,7 +37,7 @@
46
  #include <machine/cpu.h>
47
  #endif
48
@@ -44,20 +52,3 @@
49
  #include <signal.h>
50
  #include <setjmp.h>
51
  static sigjmp_buf jmpbuf;
52
-@@ -340,7 +340,6 @@
53
-     }
54
- 
55
-     canjump = 1;
56
--    x265_cpu_neon_test();
57
-     canjump = 0;
58
-     signal(SIGILL, oldsig);
59
- #endif // if !HAVE_NEON
60
-@@ -356,7 +355,7 @@
61
-     // which may result in incorrect detection and the counters stuck enabled.
62
-     // right now Apple does not seem to support performance counters for this test
63
- #ifndef __MACH__
64
--    flags |= x265_cpu_fast_neon_mrc_test() ? X265_CPU_FAST_NEON_MRC : 0;
65
-+    //flags |= x265_cpu_fast_neon_mrc_test() ? X265_CPU_FAST_NEON_MRC : 0;
66
- #endif
67
-     // TODO: write dual issue test? currently it's A8 (dual issue) vs. A9 (fast mrc)
68
- #endif // if HAVE_ARMV6
69
baselibs.conf Changed
4
 
1
@@ -1,1 +1,1 @@
2
-libx265-59
3
+libx265-68
4
x265_1.7.tar.gz -> x265_1.8.tar.gz Changed
Refresh
Refresh
Request History
Luigi Baldoni's avatar

Aloysius created request over 9 years ago

Update to 1.8


Olaf Hering's avatar

olh accepted request over 9 years ago