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 CCBF34A9BD for ; Mon, 6 May 2024 22:52:54 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id AC51F68D70D; Tue, 7 May 2024 01:52:51 +0300 (EEST) Received: from w4.tutanota.de (w4.tutanota.de [81.3.6.165]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id D435468D4F7 for ; Tue, 7 May 2024 01:52:44 +0300 (EEST) Received: from tutadb.w10.tutanota.de (unknown [192.168.1.10]) by w4.tutanota.de (Postfix) with ESMTP id 6A2941060147 for ; Mon, 6 May 2024 22:52:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1715035964; s=s1; d=lynne.ee; h=From:From:To:To:Subject:Subject:Content-Description:Content-ID:Content-Type:Content-Type:Content-Transfer-Encoding:Content-Transfer-Encoding:Cc:Date:Date:In-Reply-To:In-Reply-To:MIME-Version:MIME-Version:Message-ID:Message-ID:Reply-To:References:References:Sender; bh=keleQTpkmem+aCjY7LBBCwBph+ZNGkU0SZNbdSEHOl4=; b=EYJedu2Znl8VHO6YyRWSpn/5h0vdP89MjiQm0iR30/ecj9s5zWkI7sNSfgEOfoeO HJKzUkTi2XsKjhtQM1iv9tJOychfgg4YVwmlNOmWTX9UnmA6Mui+T1dx1lg0SyUKvcO iAiZNAcSP4PR12utiNNfxY75LxWiQIsw88kDdiZEb9AEsWGwfa3a8TGINaUwwvuwGNe OUNbIS2KVsdse57MnGjBnLSMrsG+NRertWf5P9/ZCos1460ruxwqF6p0bmYuHEFSxop mmw47N6cyfH/3Fgnrlb45NHFpn/rPq7zQ1GKshYpN8tPJ7MktTO5zslM/EIRd9/ivhG fBfPcP/oHA== Date: Tue, 7 May 2024 00:52:44 +0200 (CEST) From: Lynne To: FFmpeg development discussions and patches Message-ID: In-Reply-To: References: MIME-Version: 1.0 Subject: Re: [FFmpeg-devel] [PATCH 26/28] avcodec/mpegvideoencdsp: Factor draw_edges out in its own context 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 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: May 6, 2024, 23:53 by andreas.rheinhardt@outlook.com: > This allows to remove a dependency of the dirac decoder (!) > on mpegvideoenc. > > Signed-off-by: Andreas Rheinhardt > --- > configure | 7 +- > libavcodec/Makefile | 1 + > libavcodec/diracdec.c | 14 +-- > libavcodec/drawedgesdsp.c | 61 ++++++++++ > libavcodec/drawedgesdsp.h | 35 ++++++ > libavcodec/mpegvideo.h | 2 + > libavcodec/mpegvideo_enc.c | 9 +- > libavcodec/mpegvideoencdsp.c | 32 ------ > libavcodec/mpegvideoencdsp.h | 6 - > libavcodec/snowenc.c | 13 ++- > libavcodec/x86/Makefile | 1 + > libavcodec/x86/drawedgesdsp.c | 157 ++++++++++++++++++++++++++ > libavcodec/x86/mpegvideo.c | 2 +- > libavcodec/x86/mpegvideoencdsp_init.c | 118 ------------------- > 14 files changed, 281 insertions(+), 177 deletions(-) > create mode 100644 libavcodec/drawedgesdsp.c > create mode 100644 libavcodec/drawedgesdsp.h > create mode 100644 libavcodec/x86/drawedgesdsp.c > 26, 27 and 28 all LGTM _______________________________________________ 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".