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