Changes of Revision 34

handbrake.changes Changed
x
 
1
@@ -1,4 +1,79 @@
2
 -------------------------------------------------------------------
3
+Tue Jan 07 17:44:23 UTC 2020 - enzokiel@kabelmail.de
4
+
5
+- update to version 1.3.1
6
+  + General
7
+    - Fixed potential crash when opening a DVD source
8
+  + Video
9
+    - Fixed rotation/flip not working properly in some cases
10
+    - Fixed an issue with QSV failures when using --start-at
11
+    - Updated presets using x265 to set aq-mode 1, the default
12
+      prior to HandBrake 1.3.0
13
+    - Improved AMD VCE rate control by always explicitly setting
14
+      the rate control method
15
+    - Added a workaround to fix x265 not parsing the H.265 Level
16
+      setting where localized
17
+    - Added an upstream patch to fix x265 limit-tu bug in loading
18
+      co-located CU's TU depth
19
+    - Added an upstream patch to fix x265 2-pass encoding failure
20
+    - Added an upstream patch to fix x265 VBV macroblocking at end
21
+      of final GOP
22
+  + Audio
23
+    - Fixed importing older presets where "und" was used to select
24
+      any language track
25
+      + Since HandBrake 1.3.0, "any" selects any language track and
26
+        "und" selects undefined language tracks only
27
+    - Fixed secondary audio tracks on Blu-ray sources not being
28
+      detected in some cases
29
+  + Subtitles
30
+    - Fixed importing older presets where "und" was used to select
31
+      any language track
32
+      + Since HandBrake 1.3.0, "any" selects any language track and
33
+        "und" selects undefined language tracks only
34
+  + Build system
35
+    - Fixed cpp and lib flags causing build failures on some Linux
36
+      systems
37
+  + Third-party libraries
38
+    - Updated libraries
39
+      + FFmpeg 4.2.2 (decoding and filters)
40
+  + Linux
41
+    - Fixed UI translations not working in some cases
42
+    - Fixed display of chapter start times
43
+    - Fixed small memory leak in audio list
44
+  + Mac
45
+    - Fixed importing external ASS/SSA subtitles
46
+    - Fixed statistics not updating after queue completion
47
+    - Fixed a crash that can occur when reading bluray sources.
48
+    - Updated documentation link to the most recent documentation
49
+      version
50
+  + Windows
51
+    - Fixed missing UI translations for some languages
52
+      + Español (Spanish)
53
+      + Français (French)
54
+      + 한국어 (Korean)
55
+      + русский (Russian)
56
+      + Türkçe (Turkish)
57
+    - Fixed official presets not updating after installing a new
58
+      release
59
+    - Fixed preference for automatically naming file extension
60
+      MP4/M4V not working
61
+    - Fixed an issue preventing the use of relative paths for
62
+      automatic naming
63
+    - Fixed audio and subtitles selection behavior not saving when
64
+      set via the Save New Preset dialog
65
+    - Fixed closed captions not being added automatically per
66
+      selection behavior
67
+    - Fixed iPod 5G support option displaying when an incompatible
68
+      encoder is selected
69
+    - Fixed queue updating slowly or not updating in some cases
70
+    - Fixed a few UI issues and a crash with the new dark theme.
71
+    - Fixed window not restoring properly after minimizing to
72
+      system tray
73
+    - Fixed frame rate mode not updating on video codec change,
74
+      preventing QSV zero-copy mode
75
+- Fixed HandBrake-build-shared.patch
76
+
77
+-------------------------------------------------------------------
78
 Wed Jan 01 16:31:49 UTC 2020 - enzokiel@kabelmail.de
79
 
80
 - update to version 1.3.0
81
handbrake.spec Changed
10
 
1
@@ -25,7 +25,7 @@
2
 
3
 Name:           handbrake
4
 Summary:        Multithreaded Video Transcoder
5
-Version:        1.3.0
6
+Version:        1.3.1
7
 Release:        0
8
 Url:            http://handbrake.fr/
9
 Source0:        https://download.handbrake.fr/releases/%{version}/HandBrake-%{version}-source.tar.bz2
10
HandBrake-build-shared.patch Changed
38
 
1
@@ -1,5 +1,5 @@
2
---- make/include/main.defs.orig    2019-12-30 19:59:28.789369050 +0100
3
-+++ make/include/main.defs 2019-12-30 19:59:28.797368897 +0100
4
+--- make/include/main.defs.orig    2020-01-07 18:53:44.906464000 +0100
5
++++ make/include/main.defs 2020-01-07 18:53:44.914463851 +0100
6
 @@ -28,32 +28,22 @@
7
      MODULES += contrib/x264
8
      MODULES += contrib/jansson
9
@@ -43,19 +43,19 @@
10
  endif
11
  
12
  ifeq (1,$(FEATURE.vce))
13
---- gtk/configure.ac.orig  2019-12-30 20:02:01.998446129 +0100
14
-+++ gtk/configure.ac   2019-12-30 20:02:02.006445977 +0100
15
+--- gtk/configure.ac.orig  2020-01-07 18:56:48.895031136 +0100
16
++++ gtk/configure.ac   2020-01-07 18:56:48.903030986 +0100
17
 @@ -199,7 +199,7 @@
18
  
19
- GHB_CFLAGS="$HBINC $GHB_CFLAGS"
20
+ AM_CONDITIONAL([MINGW], [test "x$mingw_flag" = "xyes"])
21
  
22
--HB_LIBS="-lhandbrake -lavformat -lavfilter -lavcodec -lavutil -ldav1d -lswresample -lpostproc -ldvdnav -ldvdread -lmp3lame -lvorbis -lvorbisenc -logg -lx264 -lswscale -ltheoraenc -ltheoradec -lvpx -lz -lbz2 -lbluray -lass -lfontconfig -lfreetype -lxml2 -ljansson -lopus -lspeex -llzma"
23
-+HB_LIBS="-lhandbrake -lavformat -lavfilter -lavcodec -lavutil -ldav1d -lswresample -lpostproc -ldvdnav -ldvdread -lmp3lame -lvorbis -lvorbisenc -logg -lx264 -lx265 -lswscale -ltheoraenc -ltheoradec -lvpx -lz -lbz2 -lbluray -lass -lfontconfig -lfreetype -lxml2 -ljansson -lopus -lspeex -llzma -ldl"
24
+-HB_LIBS="$HB_LIBS -lhandbrake -lavformat -lavfilter -lavcodec -lavutil -ldav1d -lswresample -lpostproc -ldvdnav -ldvdread -lmp3lame -lvorbis -lvorbisenc -logg -lswscale -ltheoraenc -ltheoradec -lvpx -lz -lbz2 -lbluray -lass -lfontconfig -lfreetype -lxml2 -ljansson -lopus -lspeex -llzma"
25
++HB_LIBS="$HB_LIBS -lhandbrake -lavformat -lavfilter -lavcodec -lavutil -ldav1d -lswresample -lpostproc -ldvdnav -ldvdread -lmp3lame -lvorbis -lvorbisenc -logg -lswscale -ltheoraenc -ltheoradec -lvpx -lz -lbz2 -lbluray -lass -lfontconfig -lfreetype -lxml2 -ljansson -lopus -lspeex -llzma -ldl"
26
+ HB_CPPFLAGS="$HB_CPPFLAGS $HBINC"
27
  
28
- if test "x$use_fdk_aac" = "xyes" ; then
29
-     HB_LIBS="$HB_LIBS -lfdk-aac"
30
---- test/module.defs.orig  2019-12-30 20:03:22.552921543 +0100
31
-+++ test/module.defs   2019-12-30 20:03:22.564921316 +0100
32
+ PKG_CHECK_MODULES([x264], [x264], sys_x264=yes, sys_x264=no)
33
+--- test/module.defs.orig  2020-01-07 18:57:33.970190122 +0100
34
++++ test/module.defs   2020-01-07 18:57:33.978189973 +0100
35
 @@ -16,7 +16,7 @@
36
  TEST.GCC.l = \
37
          ass avformat avfilter avcodec avutil swresample postproc mp3lame dvdnav \
38
HandBrake-1.3.0-source.tar.bz2 Deleted
HandBrake-1.3.1-source.tar.bz2 Added
HandBrake-1.3.0-source.tar.bz2.sig -> HandBrake-1.3.1-source.tar.bz2.sig Changed