From patchwork Mon Dec 2 16:40:55 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nicolas George X-Patchwork-Id: 16539 Return-Path: X-Original-To: patchwork@ffaux-bg.ffmpeg.org Delivered-To: patchwork@ffaux-bg.ffmpeg.org Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by ffaux.localdomain (Postfix) with ESMTP id 1A87E44A89F for ; Mon, 2 Dec 2019 18:41:09 +0200 (EET) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 07A9F68B057; Mon, 2 Dec 2019 18:41:09 +0200 (EET) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from nef.ens.fr (nef2.ens.fr [129.199.96.40]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id BFA8468AB43 for ; Mon, 2 Dec 2019 18:40:59 +0200 (EET) X-ENS-nef-client: 129.199.129.80 Received: from phare.normalesup.org (phare.normalesup.org [129.199.129.80]) by nef.ens.fr (8.14.4/1.01.28121999) with ESMTP id xB2GewN1030709 for ; Mon, 2 Dec 2019 17:40:59 +0100 Received: by phare.normalesup.org (Postfix, from userid 1001) id D9436EB5B7; Mon, 2 Dec 2019 17:40:58 +0100 (CET) From: Nicolas George To: ffmpeg-devel@ffmpeg.org Date: Mon, 2 Dec 2019 17:40:55 +0100 Message-Id: <20191202164056.15926-4-george@nsup.org> X-Mailer: git-send-email 2.24.0 In-Reply-To: <20191202164056.15926-1-george@nsup.org> References: <20191202164056.15926-1-george@nsup.org> MIME-Version: 1.0 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (nef.ens.fr [129.199.96.32]); Mon, 02 Dec 2019 17:40:59 +0100 (CET) Subject: [FFmpeg-devel] [PATCH 4/5] lavfi: remove AVFilterPad.poll_frame(). X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.20 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 Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" This design is no longer used and was replaced a long time ago. Signed-off-by: Nicolas George --- libavfilter/internal.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/libavfilter/internal.h b/libavfilter/internal.h index f98127c442..abe7537b5d 100644 --- a/libavfilter/internal.h +++ b/libavfilter/internal.h @@ -92,17 +92,6 @@ struct AVFilterPad { */ int (*filter_frame)(AVFilterLink *link, AVFrame *frame); - /** - * Frame poll callback. This returns the number of immediately available - * samples. It should return a positive value if the next request_frame() - * is guaranteed to return one frame (with no delay). - * - * Defaults to just calling the source poll_frame() method. - * - * Output pads only. - */ - int (*poll_frame)(AVFilterLink *link); - /** * Frame request callback. A call to this should result in some progress * towards producing output over the given link. This should return zero