guix_mirror_bot pushed a commit to branch audio-team
in repository guix.
commit acb2377e4d09b0c4ae2c85577da95646b26c9e46
Author: SilverlightningY <[email protected]>
AuthorDate: Thu Jun 4 00:58:00 2026 +0200
gnu: ffmpeg-6: Update to 6.1.5.
* gnu/packages/video.scm (ffmpeg-6): Update to 6.1.5. Format `guix style`.
Change-Id: I4564390f7cda8b33f4a6e378032415e3c5dcf59c
Signed-off-by: Gabriel Wicki <[email protected]>
---
gnu/packages/video.scm | 30 ++++++++++++++----------------
1 file changed, 14 insertions(+), 16 deletions(-)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 893b26ea68..5b108683dc 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -2003,17 +2003,16 @@ audio/video codec library.")
(define-public ffmpeg-6
(package
(inherit ffmpeg)
- (version "6.1.4")
- (source (origin
- (method url-fetch)
- (uri (string-append "https://ffmpeg.org/releases/ffmpeg-"
- version ".tar.xz"))
- (sha256
- (base32
- "061s10n1z2f5wbhvjv8b7rv14390nvbqmfdzmv6v2i1cfkay6cd2"))
- (patches
- (search-patches
- "ffmpeg-add-av_stream_get_first_dts-for-chromium.patch"))))
+ (version "6.1.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://ffmpeg.org/releases/ffmpeg-" version
+ ".tar.xz"))
+ (sha256
+ (base32 "04ll214qrdbjy7j945l9ca0v0jwxva8vzndibdha6ljl3zdykyq5"))
+ (patches (search-patches
+ "ffmpeg-add-av_stream_get_first_dts-for-chromium.patch"))))
(arguments
(if (target-x86-32?)
(substitute-keyword-arguments arguments
@@ -2021,11 +2020,10 @@ audio/video codec library.")
#~(modify-phases #$phases
(add-before 'configure 'relax-gcc-14-strictness
(lambda _
- (setenv
- "CFLAGS"
- (string-append "-g -O2"
- " -Wno-error=incompatible-pointer-types"
- " -Wno-error=int-conversion")))))))
+ (setenv "CFLAGS"
+ (string-append "-g -O2"
+ " -Wno-error=incompatible-pointer-types"
+ " -Wno-error=int-conversion")))))))
(package-arguments ffmpeg)))))
(define-public ffmpeg-5