Changes of Revision 49

ffx264.changes Changed
x
 
1
@@ -1,4 +1,11 @@
2
 -------------------------------------------------------------------
3
+Sun May 14 09:36:00 UTC 2017 - neutrino8@opensuse.org
4
+
5
+- Update to version 3.4.0
6
+  * Bugfix in the software scale code. Use an if conditional
7
+    to check for an y/n answer
8
+
9
+-------------------------------------------------------------------
10
 Sat May 13 18:04:00 UTC 2017 - neutrino8@opensuse.org
11
 
12
 - Update to version 3.3.9
13
ffx264.spec Changed
10
 
1
@@ -17,7 +17,7 @@
2
 
3
 
4
 Name:           ffx264
5
-Version:        3.3.9
6
+Version:        3.4.0
7
 Release:        0
8
 Summary:        A small shell script for encoding to H.264 with ffmpeg
9
 License:        GPL-2.0+
10
ffx264-3.3.9.tar.gz/ChangeLog -> ffx264-3.4.0.tar.gz/ChangeLog Changed
9
 
1
@@ -1,3 +1,7 @@
2
+2017-05-14 - ffx264 3.4.0
3
+   * Bugfix in the software scale code. Use an if conditional
4
+     to check for an y/n answer
5
+     
6
 2017-05-13 - ffx264 3.3.9
7
    * Support accurate rounding for the software scalers
8
    * Support full chroma interpolation for the software scalers
9
ffx264-3.3.9.tar.gz/ffx264 -> ffx264-3.4.0.tar.gz/ffx264 Changed
38
 
1
@@ -2,8 +2,8 @@
2
 #
3
 # Small script to encode to H.264/AVC video using FFmpeg and libx264.
4
 # Author: Grozdan "microchip" Nikolov <neutrino8@opensuse.org>
5
-# Version: 3.3.9
6
-# Date: 2017-05-13
7
+# Version: 3.4.0
8
+# Date: 2017-05-14
9
 #
10
 # ffx264 is free software ; you can redistribute it and/or modify
11
 # it under the terms of the GNU General Public License as published by
12
@@ -24,7 +24,7 @@
13
 brown() { echo -e "\e[0;33m$1\e[0;39;49m"; }
14
 error() { echo -e "\e[1;31m$1\e[0;39;49m"; }
15
 
16
-version="3.3.9"
17
+version="3.4.0"
18
 
19
 CFG="$HOME/.ffx264"
20
 cfgversion="30"
21
@@ -1128,10 +1128,14 @@
22
        fi
23
        printf "Enable Accurate Rounding? [y/N]: "
24
        read around
25
-       test ! -z "$around" && accuround="+accurate_rnd"
26
+       if [ "$around" = "y" -o "$around" = "Y" ]; then
27
+           accuround="+accurate_rnd"
28
+       fi
29
        printf "Enable Full Chroma Interpolation? [y/N]: "
30
        read fci
31
-       test ! -z "$fci" && fullchroma="+full_chroma_int"
32
+       if [ "$fci" = "y" -o "$fci" = "Y" ]; then
33
+           fullchroma="+full_chroma_int"
34
+       fi
35
        test -z "$interlaced" && scale="scale=$res:flags=$scaler$accuround$fullchroma," || scale="scale=$res:interl=1:flags=$scaler$accuround$fullchroma,"
36
    fi
37
 fi
38