lol

libvpx: 1.4.0 -> 1.5.0

Closes #15136.

authored by

taku0 and committed by
Franz Pletz
67cb0eaa 806ce632

+3 -6
+3 -6
pkgs/development/libraries/libvpx/default.nix
··· 13 13 , runtimeCpuDetectSupport ? true # detect cpu capabilities at runtime 14 14 , thumbSupport ? false # build arm assembly in thumb mode 15 15 , examplesSupport ? true # build examples (vpxdec & vpxenc are part of examples) 16 - , fastUnalignedSupport ? true # use unaligned accesses if supported by hardware 17 16 , debugLibsSupport ? false # include debug version of each library 18 17 , postprocSupport ? true # postprocessing 19 18 , multithreadSupport ? true # multithreaded decoding & encoding 20 19 , internalStatsSupport ? false # output of encoder internal stats for debug, if supported (encoders) 21 - , memTrackerSupport ? false # track memory usage 22 20 , spatialResamplingSupport ? true # spatial sampling (scaling) 23 21 , realtimeOnlySupport ? false # build for real-time encoding 24 22 , ontheflyBitpackingSupport ? false # on-the-fly bitpacking in real-time encoding ··· 61 59 62 60 stdenv.mkDerivation rec { 63 61 name = "libvpx-${version}"; 64 - version = "1.4.0"; 62 + version = "1.5.0"; 65 63 66 64 src = fetchFromGitHub { 67 65 owner = "webmproject"; 68 66 repo = "libvpx"; 69 67 rev = "v${version}"; 70 - sha256 = "1y8cf2q5ij8z8ab5j36m18rbs62aah6sw6shzbs3jr70ja0z6n8s"; 68 + sha256 = "19ill4c7dak5f8m4pdbas87zknw3a34sca8a4i952q0l0jnif0np"; 71 69 }; 72 70 73 71 patchPhase = ''patchShebangs .''; ··· 103 101 "--as=yasm" 104 102 # Limit default decoder max to WHXGA 105 103 (if sizeLimitSupport then "--size-limit=5120x3200" else null) 106 - (enableFeature fastUnalignedSupport "fast-unaligned") 107 104 "--disable-codec-srcs" 108 105 (enableFeature debugLibsSupport "debug-libs") 109 106 (enableFeature isMips "dequant-tokens") ··· 112 109 (enableFeature (postprocSupport && (vp9DecoderSupport || vp9EncoderSupport)) "vp9-postproc") 113 110 (enableFeature multithreadSupport "multithread") 114 111 (enableFeature internalStatsSupport "internal-stats") 115 - (enableFeature memTrackerSupport "mem-tracker") 116 112 (enableFeature spatialResamplingSupport "spatial-resampling") 117 113 (enableFeature realtimeOnlySupport "realtime-only") 118 114 (enableFeature ontheflyBitpackingSupport "onthefly-bitpacking") ··· 158 154 dontSetConfigureCross = true; 159 155 configureFlags = configureFlags ++ [ 160 156 #"--extra-cflags=" 157 + #"--extra-cxxflags=" 161 158 #"--prefix=" 162 159 #"--libc=" 163 160 #"--libdir="