Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d853c3b89586
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5dc7314c5332
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 21, 2017

  1. libopus: 1.1.5 -> 1.2

    > http://opus-codec.org/release/stable/2017/06/20/libopus-1_2.html
    
    Changes since 1.1.x include:
    
    - Speech quality improvements especially in the 12-20 kbit/s range
    - Improved VBR encoding for hybrid mode
    - More aggressive use of wider speech bandwidth, including fullband speech starting at 14 kbit/s
    - Music quality improvements in the 32-48 kb/s range
    - Generic and SSE CELT optimizations
    - Support for directly encoding packets up to 120 ms
    - DTX support for CELT mode
    - SILK CBR improvements
    - Support for all of the fixes in draft-ietf-codec-opus-update-06 (the mono downmix and the folding fixes need --enable-update-draft)
    - Many bug fixes, including integer wrap-arounds discovered through fuzzing (no security implications)
    GeNTooFReaK committed Jun 21, 2017
    Copy the full SHA
    80ace73 View commit details

Commits on Jun 24, 2017

  1. Merge pull request #26749 from gentoofreak/libopus-1.2

    libopus: 1.1.5 -> 1.2
    Mic92 authored Jun 24, 2017
    Copy the full SHA
    5dc7314 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/libraries/libopus/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/libraries/libopus/default.nix
Original file line number Diff line number Diff line change
@@ -2,14 +2,14 @@
, fixedPoint ? false, withCustomModes ? true }:

let
version = "1.1.5";
version = "1.2";
in
stdenv.mkDerivation rec {
name = "libopus-${version}";

src = fetchurl {
url = "http://downloads.xiph.org/releases/opus/opus-${version}.tar.gz";
sha256 = "1r33nm7b052dw7gsc99809df1zmj5icfiljqbrfkw2pll0f9i17b";
url = "https://archive.mozilla.org/pub/opus/opus-${version}.tar.gz";
sha256 = "1ad9q2g9vivx409jdsslv1hrh5r616qz2pjm96y8ymsigfl4bnvp";
};

outputs = [ "out" "dev" ];