Skip to content

Commit

Permalink
libopus: 1.2 -> 1.2.1
Browse files Browse the repository at this point in the history
> 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.
  • Loading branch information
GeNTooFReaK committed Jun 28, 2017
1 parent a6cf636 commit b90bab7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/libopus/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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" ];
Expand Down

0 comments on commit b90bab7

Please sign in to comment.