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 45F1E48A5D for ; Thu, 28 Dec 2023 23:26:07 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 4614168CCC5; Fri, 29 Dec 2023 01:26:04 +0200 (EET) Received: from relay8-d.mail.gandi.net (relay8-d.mail.gandi.net [217.70.183.201]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 30C4F68CB18 for ; Fri, 29 Dec 2023 01:25:57 +0200 (EET) Received: by mail.gandi.net (Postfix) with ESMTPSA id 4EE011BF205 for ; Thu, 28 Dec 2023 23:25:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=niedermayer.cc; s=gm1; t=1703805956; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=RzycJFkn+C2vJxEEf2Ksj0PbKjsYB9oVuq2i4zmjr0I=; b=oCQy8j5r+lsKc9RYsOZ6XOUI8hSGP6dNmNiUrQam9UTbehE8mQR3NNg9dFaSBlHS4O/sNq 7PYylfWu9Y6eL1aruTh15/GATrFimJtkoYNxu2B2yuzCg6zekaMbU+R9DCUhcUI3S66hTs rLogDzFf8v3onOHgTcb6UkuwWPH/TXAd6q9L5aF6Ei9CrtsUl0ZO4rEK7xIxugoefOxY18 dydd5I34diJy5mo2y1smWQp/4adNWfW1xhCuPxouq66dpiNk0eybv1371VwQdj8pODAwin Sd6wps2ai8lu0jsEyu5qSc/n0rayvlkoxN8BuXNnJzRLdtxsywJ7LWGxVs0fXA== Date: Fri, 29 Dec 2023 00:25:55 +0100 From: Michael Niedermayer To: FFmpeg development discussions and patches Message-ID: <20231228232555.GA6420@pb2> References: <20231228082105.31311-1-jinbo@loongson.cn> <511b8028.104d0.18cafa04a17.Coremail.yinshiyou-hf@loongson.cn> MIME-Version: 1.0 In-Reply-To: <511b8028.104d0.18cafa04a17.Coremail.yinshiyou-hf@loongson.cn> X-GND-Sasl: michael@niedermayer.cc Subject: Re: [FFmpeg-devel] [PATCH v3 1/7] avcodec/hevc: Add init for sao_edge_filter 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: multipart/mixed; boundary="===============7094973382560883821==" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --===============7094973382560883821== Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="dfOvyYudzT1RPUKx" Content-Disposition: inline --dfOvyYudzT1RPUKx Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Dec 28, 2023 at 04:52:46PM +0800, yinshiyou-hf@loongson.cn wrote: > > -----=E5=8E=9F=E5=A7=8B=E9=82=AE=E4=BB=B6----- > > =E5=8F=91=E4=BB=B6=E4=BA=BA: jinbo > > =E5=8F=91=E9=80=81=E6=97=B6=E9=97=B4:2023-12-28 16:20:59 (=E6=98=9F=E6= =9C=9F=E5=9B=9B) > > =E6=94=B6=E4=BB=B6=E4=BA=BA: ffmpeg-devel@ffmpeg.org > > =E6=8A=84=E9=80=81: jinbo > > =E4=B8=BB=E9=A2=98: [FFmpeg-devel] [PATCH v3 1/7] avcodec/hevc: Add ini= t for sao_edge_filter > >=20 > > Forgot to init c->sao_edge_filter[idx] when idx=3D0/1/2/3. > > After this patch, the speedup of decoding H265 4K 30FPS > > 30Mbps on 3A6000 is about 7% (42fps=3D=3D>45fps). > >=20 > > Change-Id: I521999b397fa72b931a23c165cf45f276440cdfb > > --- > > libavcodec/loongarch/hevcdsp_init_loongarch.c | 4 ++++ > > 1 file changed, 4 insertions(+) > >=20 > > diff --git a/libavcodec/loongarch/hevcdsp_init_loongarch.c b/libavcodec= /loongarch/hevcdsp_init_loongarch.c > > index 22739c6f5b..5a96f3a4c9 100644 > > --- a/libavcodec/loongarch/hevcdsp_init_loongarch.c > > +++ b/libavcodec/loongarch/hevcdsp_init_loongarch.c > > @@ -167,6 +167,10 @@ void ff_hevc_dsp_init_loongarch(HEVCDSPContext *c,= const int bit_depth) > > c->put_hevc_qpel_uni_w[8][1][1] =3D ff_hevc_put_hevc_uni_w= _qpel_hv48_8_lsx; > > c->put_hevc_qpel_uni_w[9][1][1] =3D ff_hevc_put_hevc_uni_w= _qpel_hv64_8_lsx; > > =20 > > + c->sao_edge_filter[0] =3D ff_hevc_sao_edge_filter_8_lsx; > > + c->sao_edge_filter[1] =3D ff_hevc_sao_edge_filter_8_lsx; > > + c->sao_edge_filter[2] =3D ff_hevc_sao_edge_filter_8_lsx; > > + c->sao_edge_filter[3] =3D ff_hevc_sao_edge_filter_8_lsx; > > c->sao_edge_filter[4] =3D ff_hevc_sao_edge_filter_8_lsx; > > =20 > > c->hevc_h_loop_filter_luma =3D ff_hevc_loop_filter_luma_h_= 8_lsx; > > --=20 > > 2.20.1 > >=20 > > _______________________________________________ > > ffmpeg-devel mailing list > > ffmpeg-devel@ffmpeg.org > > https://ffmpeg.org/mailman/listinfo/ffmpeg-devel > >=20 > > To unsubscribe, visit link above, or email > > ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". >=20 > LGTM will apply thx [...] --=20 Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB "Nothing to hide" only works if the folks in power share the values of you and everyone you know entirely and always will -- Tom Scott --dfOvyYudzT1RPUKx Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iF0EABEIAB0WIQSf8hKLFH72cwut8TNhHseHBAsPqwUCZY4D+wAKCRBhHseHBAsP q0lgAKCCMx6F42UNQ+8TZMEYZ+os5z34OgCeLQ2HabcMC6CzEwluVk8Kji/lTI0= =N1Np -----END PGP SIGNATURE----- --dfOvyYudzT1RPUKx-- --===============7094973382560883821== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ 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". --===============7094973382560883821==--