From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1LgQY6-0002Ua-P4 for garchives@archives.gentoo.org; Sun, 08 Mar 2009 21:28:42 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3C191E081C; Sun, 8 Mar 2009 21:28:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 1C4E6E081C for ; Sun, 8 Mar 2009 21:28:42 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id B407964C95 for ; Sun, 8 Mar 2009 21:28:41 +0000 (UTC) Received: from aballier by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1LgQY5-0006zr-Em for gentoo-commits@lists.gentoo.org; Sun, 08 Mar 2009 21:28:41 +0000 From: "Alexis Ballier (aballier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, aballier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in media-libs/xine-lib/files: xine-lib-1.1.16.2-avutil.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: xine-lib-1.1.16.2-avutil.patch X-VCS-Directories: media-libs/xine-lib/files X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier Content-Type: text/plain; charset=utf8 Message-Id: Sender: Alexis Ballier Date: Sun, 08 Mar 2009 21:28:41 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: d943b859-eae5-4cff-8875-61a1dbfc8f1d X-Archives-Hash: 19af7264bdf96a584605a4efdb53d397 aballier 09/03/08 21:28:41 Added: xine-lib-1.1.16.2-avutil.patch Log: Add a patch from upstream to fix build with latest libavutil (Portage version: 2.2_rc23/cvs/Linux x86_64) Revision Changes Path 1.1 media-libs/xine-lib/files/xine-lib-1.1.16.2-avutil.p= atch file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/xine-li= b/files/xine-lib-1.1.16.2-avutil.patch?rev=3D1.1&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/xine-li= b/files/xine-lib-1.1.16.2-avutil.patch?rev=3D1.1&content-type=3Dtext/plai= n Index: xine-lib-1.1.16.2-avutil.patch =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # HG changeset patch # User Alexis Ballier # Date 1236540650 -3600 # Node ID 044a503f894304328c991f6495f9e14c4c4e5ecb # Parent ba642133c0c8b4ece4cb4d2a98355afde7264900 Fix build with libavutil >=3D 50.0.0 PIX_FMT_RGBA32 was #defined to PIX_FMT_RGB32 since 2006. diff -r ba642133c0c8 -r 044a503f8943 src/combined/ffmpeg/ff_video_decoder= .c --- a/src/combined/ffmpeg/ff_video_decoder.c Sun Mar 08 16:33:02 2009 +00= 00 +++ b/src/combined/ffmpeg/ff_video_decoder.c Sun Mar 08 20:30:50 2009 +01= 00 @@ -588,7 +588,7 @@ img->width, this->bih.biHeight); =20 - } else if (this->context->pix_fmt =3D=3D PIX_FMT_RGBA32) { + } else if (this->context->pix_fmt =3D=3D PIX_FMT_RGB32) { =20 int x, plane_ptr =3D 0; uint32_t *argb_pixels; @@ -1304,7 +1304,7 @@ =20 /* initialize the colorspace converter */ if (!this->cs_convert_init) { - if ((this->context->pix_fmt =3D=3D PIX_FMT_RGBA32) || + if ((this->context->pix_fmt =3D=3D PIX_FMT_RGB32) || (this->context->pix_fmt =3D=3D PIX_FMT_RGB565) || (this->context->pix_fmt =3D=3D PIX_FMT_RGB555) || (this->context->pix_fmt =3D=3D PIX_FMT_BGR24) ||