diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 55fdccfd01a..904bc9a9918 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -942,6 +942,7 @@ television and DVD. It is also known as AC-3.") (define-public libaom (package + (replacement libaom/fixed) (name "libaom") (version "3.8.0") (source (origin @@ -977,6 +978,21 @@ television and DVD. It is also known as AC-3.") shared library and encoder and decoder command-line executables.") (license license:bsd-2))) +(define-public libaom/fixed + (package + (inherit libaom) + (name "libaom") + (version "3.9.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://aomedia.googlesource.com/aom/") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0wpbc2vnwnvgr2ig64rgy38bi3wg24kaxizzc0i403ar8dx6q3ax")))))) + (define-public libmpeg2 (package (name "libmpeg2")