From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:41964) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iinZT-0000l3-Ok for guix-patches@gnu.org; Sat, 21 Dec 2019 17:50:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iinZS-0001jt-M0 for guix-patches@gnu.org; Sat, 21 Dec 2019 17:50:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:42904) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iinZS-0001it-Fg for guix-patches@gnu.org; Sat, 21 Dec 2019 17:50:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iinZS-0002Ji-D5 for guix-patches@gnu.org; Sat, 21 Dec 2019 17:50:02 -0500 Subject: [bug#38670] [PATCH] Fix audio/video in icecat Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20191219145922.715720ad@sybil.lepiller.eu> Date: Sat, 21 Dec 2019 23:49:08 +0100 In-Reply-To: <20191219145922.715720ad@sybil.lepiller.eu> (Julien Lepiller's message of "Thu, 19 Dec 2019 14:59:22 +0100") Message-ID: <87k16pmh0b.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Julien Lepiller Cc: Mark H Weaver , 38670@debbugs.gnu.org Hi Julien, Julien Lepiller skribis: > since the update to icecat 68, mpeg decoding doesn't work in IceCat > (mp3/mp4 would not play, breaking a lot of online media players). This > patch addresses that issue, that was caused by IceCat not finding > ffmpeg's library. It was dlopening libavcodec.so, but could not find > it. I replaced it with an absolute reference to the library in the > store, which now allows IceCat to load the library at runtime. It also > adds ffmpeg to icecat's closure, ensuring it will always find it. Great that you found out! >>>From c144cf973235d2e633daeeedbac45fcf61da04a1 Mon Sep 17 00:00:00 2001 > From: Julien Lepiller > Date: Thu, 19 Dec 2019 13:02:34 +0100 > Subject: [PATCH] gnu: icecat: Fix linking with ffmpeg. > > * gnu/packages/gnuzilla.scm (icecat): Use absolute path for ffmpeg > library loading. LGTM! (Cc=E2=80=99ing Mark for a heads-up.) Thanks, Ludo=E2=80=99.