From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 23F5A4014E for ; Mon, 2 Jan 2023 23:22:01 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 3C0B568BCD3; Tue, 3 Jan 2023 01:21:52 +0200 (EET) Received: from mail.overt.org (unknown [72.14.183.176]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 5E6F868BCAF for ; Tue, 3 Jan 2023 01:21:45 +0200 (EET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=overt.org; s=mail; t=1672701703; bh=ds32OTOBsu7/n7x+glFNtkRvj18dyRqwr/RNFOhLoNU=; h=From:To:Cc:Subject:Date:From; b=UyxY8z4Z6ti8bzPUn1/3MMDYbThOuUeiwImxFp/pMU6vdVJSKCFwiSaAdCMmuSINZ OC+/MLRrrIeEpr/oa80JBe7J/W2jsYLSFBYlMFXTxsfLZpsN2n9rdjXyCtzQC9tqt9 0EdY9za4Cjm7RhnuJfUsYx1PxfKYIkZYzFaZ5q/I15Xzwp5xoWYFWwMxQFkSkUx2Lq 7sBmye3kCszeWcZ0oglYHT/yacDRx7CpxgxYyXnRZ+Fh/vzRc+VkBGkh9L4/9n3vgX GfuHrIRxrvBxMqWyxNqDlxVRqCjrDuSS3bnFad9iCY3EJLWf6p49mznyYxhktDBub0 wQJkd0KOxvlow== Received: from authenticated-user (mail.overt.org [72.14.183.176]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.overt.org (Postfix) with ESMTPSA id 3DE7B629EA; Mon, 2 Jan 2023 17:21:43 -0600 (CST) From: Philip Langdale To: ffmpeg-devel@ffmpeg.org Date: Mon, 2 Jan 2023 15:21:31 -0800 Message-Id: <20230102232133.729217-1-philipl@overt.org> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 0/2] Interpolation filter using nvidia OFFRUC Library X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: Philip Langdale Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: This filter implements frame rate down/upsampling using nvidia's Optical Flow FRUC (Frame Rate Up Conversion) library. It's neat because you get realtime interpolation with a decent level of quality. It's impractical because of licensing. I have no actual intention to merge this, as it doesn't even meet our bar for a nonfree filter, and given the EULA restrictions with the SDK, anyone who would want to use it can easily cherry-pick it into the build they have to anyway. But I figured I'd send it to list as a way of announcing that it exists. How nice would it be if nvidia had sane licensing on this stuff? I'll keep a branch at: https://github.com/philipl/FFmpeg/tree/fruc-me --phil Philip Langdale (2): lavu/hwcontext_cuda: declare support for argb/abgr/rgba/bgra avfilter/vf_nvoffruc: Add filter for nvidia's Optical Flow FRUC library configure | 7 +- libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_nvoffruc.c | 644 +++++++++++++++++++++++++++++++++++++ libavutil/hwcontext_cuda.c | 4 + 5 files changed, 654 insertions(+), 3 deletions(-) create mode 100644 libavfilter/vf_nvoffruc.c -- 2.37.2 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".