about summary refs log tree commit diff
path: root/pkgs/development/libraries/libopus
diff options
context:
space:
mode:
authorMartin Wohlert <martin@b-root-force.de>2017-06-28 11:53:05 +0200
committerMartin Wohlert <martin@b-root-force.de>2017-06-28 11:53:05 +0200
commitb90bab7d58e755de953e0355cadb3ab4cf5ad590 (patch)
tree971724534d38c71d6dad19eaadd619cd8afb3bdb /pkgs/development/libraries/libopus
parenta6cf6367e2abd9610da804286cc6c439d79717db (diff)
downloadnixlib-b90bab7d58e755de953e0355cadb3ab4cf5ad590.tar
nixlib-b90bab7d58e755de953e0355cadb3ab4cf5ad590.tar.gz
nixlib-b90bab7d58e755de953e0355cadb3ab4cf5ad590.tar.bz2
nixlib-b90bab7d58e755de953e0355cadb3ab4cf5ad590.tar.lz
nixlib-b90bab7d58e755de953e0355cadb3ab4cf5ad590.tar.xz
nixlib-b90bab7d58e755de953e0355cadb3ab4cf5ad590.tar.zst
nixlib-b90bab7d58e755de953e0355cadb3ab4cf5ad590.zip
libopus: 1.2 -> 1.2.1
> http://opus-codec.org/release/stable/2017/06/26/libopus-1_2_1.html

This Opus 1.2.1 minor release fixes a relatively rare issue where the 1.2 encoder would wrongly assume a signal to be bandlimited to 12 kHz and not encode frequencies between 12 and 20 kHz.
This only happens on a few clips, but it is good to update to avoid a potential loss of quality.

There are no other changes compared to 1.2.
Diffstat (limited to 'pkgs/development/libraries/libopus')
-rw-r--r--pkgs/development/libraries/libopus/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libopus/default.nix b/pkgs/development/libraries/libopus/default.nix
index 756def8ad904..66c7e7e882e8 100644
--- a/pkgs/development/libraries/libopus/default.nix
+++ b/pkgs/development/libraries/libopus/default.nix
@@ -2,14 +2,14 @@
 , fixedPoint ? false, withCustomModes ? true }:
 
 let
-  version = "1.2";
+  version = "1.2.1";
 in
 stdenv.mkDerivation rec {
   name = "libopus-${version}";
 
   src = fetchurl {
     url = "https://archive.mozilla.org/pub/opus/opus-${version}.tar.gz";
-    sha256 = "1ad9q2g9vivx409jdsslv1hrh5r616qz2pjm96y8ymsigfl4bnvp";
+    sha256 = "0ch7yzgg4bn1g36bpjsfrgs4n19c84d7wpdida6yzifrrhwx7byg";
   };
 
   outputs = [ "out" "dev" ];