From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 07F3513888F for ; Sat, 24 Oct 2015 11:33:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9B8FFE07F4; Sat, 24 Oct 2015 11:33:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 368F5E07F4 for ; Sat, 24 Oct 2015 11:33:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4B044340B46 for ; Sat, 24 Oct 2015 11:32:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C0604177A for ; Sat, 24 Oct 2015 11:32:52 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1445686350.3078ef8fab1424f2c198f6ecad63e0db3665c57f.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/ffmpeg/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/ffmpeg/ffmpeg-9999.ebuild media-video/ffmpeg/metadata.xml X-VCS-Directories: media-video/ffmpeg/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 3078ef8fab1424f2c198f6ecad63e0db3665c57f X-VCS-Branch: master Date: Sat, 24 Oct 2015 11:32:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d642d805-917f-4f20-938e-2415fc0d591f X-Archives-Hash: d5fde656cf73721385d6026a541c2d65 commit: 3078ef8fab1424f2c198f6ecad63e0db3665c57f Author: Alexis Ballier gentoo org> AuthorDate: Sat Oct 24 11:31:31 2015 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Sat Oct 24 11:32:30 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3078ef8f media-video/ffmpeg: Add nvenc useflag to live ebuild. Bug #542726. Package-Manager: portage-2.2.23 media-video/ffmpeg/ffmpeg-9999.ebuild | 9 +++++---- media-video/ffmpeg/metadata.xml | 1 + 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/media-video/ffmpeg/ffmpeg-9999.ebuild b/media-video/ffmpeg/ffmpeg-9999.ebuild index ebc82a4..7844b8f 100644 --- a/media-video/ffmpeg/ffmpeg-9999.ebuild +++ b/media-video/ffmpeg/ffmpeg-9999.ebuild @@ -90,9 +90,9 @@ FFMPEG_FLAG_MAP=( # Same as above but for encoders, i.e. they do something only with USE=encode. FFMPEG_ENCODER_FLAG_MAP=( aac:libvo-aacenc amrenc:libvo-amrwbenc mp3:libmp3lame - aacplus:libaacplus faac:libfaac openh264:libopenh264 snappy:libsnappy - theora:libtheora twolame:libtwolame wavpack:libwavpack webp:libwebp - x264:libx264 x265:libx265 xvid:libxvid + aacplus:libaacplus faac:libfaac nvenc:nvenc openh264:libopenh264 + snappy:libsnappy theora:libtheora twolame:libtwolame wavpack:libwavpack + webp:libwebp x264:libx264 x265:libx265 xvid:libxvid ) IUSE=" @@ -165,6 +165,7 @@ RDEPEND=" amrenc? ( >=media-libs/vo-amrwbenc-0.1.2-r1[${MULTILIB_USEDEP}] ) faac? ( >=media-libs/faac-1.28-r3[${MULTILIB_USEDEP}] ) mp3? ( >=media-sound/lame-3.99.5-r1[${MULTILIB_USEDEP}] ) + nvenc? ( >=media-video/nvenc-5 ) openh264? ( >=media-libs/openh264-1.4.0-r1[${MULTILIB_USEDEP}] ) snappy? ( >=app-arch/snappy-1.1.2-r1[${MULTILIB_USEDEP}] ) theora? ( @@ -282,7 +283,7 @@ REQUIRED_USE=" ${GPL_REQUIRED_USE} ${CPU_REQUIRED_USE}" RESTRICT=" - encode? ( faac? ( bindist ) aacplus? ( bindist ) ) + encode? ( faac? ( bindist ) aacplus? ( bindist ) nvenc? ( bindist ) ) gpl? ( openssl? ( bindist ) fdk? ( bindist ) ) " diff --git a/media-video/ffmpeg/metadata.xml b/media-video/ffmpeg/metadata.xml index a987be4..d9a078d 100644 --- a/media-video/ffmpeg/metadata.xml +++ b/media-video/ffmpeg/metadata.xml @@ -34,6 +34,7 @@ Enables MIPS DSP ASE R2 optimizations. Enables floating point MIPS optimizations. Enables network streaming support + Adds support for NVIDIA Encoder (NVENC) API for hardware accelerated encoding on NVIDIA cards. Enables H.264 encoding suppoprt via media-libs/openh264. Enables dev-libs/openssl support. Adds support for encrypted network protocols (TLS/HTTPS). Adds (decoding) support for the Opus codec via media-libs/opus.