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 05AA74B908 for ; Wed, 19 Jun 2024 11:23:52 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 0B1EB68D66B; Wed, 19 Jun 2024 14:23:51 +0300 (EEST) Received: from relay3-d.mail.gandi.net (relay3-d.mail.gandi.net [217.70.183.195]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id A0A7D68D260 for ; Wed, 19 Jun 2024 14:23:44 +0300 (EEST) Received: by mail.gandi.net (Postfix) with ESMTPSA id 0924D6000C for ; Wed, 19 Jun 2024 11:23:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=niedermayer.cc; s=gm1; t=1718796224; 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=uZ5aW9svNTIAAcDp7p2vaCymLu8pnLUM3FA5tX8uaos=; b=Ds8MPkvplCcz+9pr9c7pzfTc8bao1qd8ZkrsX41N8RXm/48pJVbKaH+oO41KqL8tdQaWwQ SBKAr7xp/j6z/TFUVva6ym8OIZS8qxCFw2apQOn644LhFeD/9SgORZABqppBva7byZv8+C qHwmVJYs19Pqlx5b5UejPScrN04NA/l28QJAqd7Wp0PsPOPXclWlULXhAPc+q4STVue27c gb6L+D/vgM16LqMTyenaib2GzRfAQ34hQSQhBsARz3ATfv+4Ynw3TOZvXe+C910PbMB3KI K8nHCQi+6Rx4RVaA6omnuy/Q/NrvQPYNyJtbPdrzp9xq7sn0ljITUgC/1MKEQg== Date: Wed, 19 Jun 2024 13:23:43 +0200 From: Michael Niedermayer To: FFmpeg development discussions and patches Message-ID: <20240619112343.GR4991@pb2> References: <20240611215906.1106071-1-michael@niedermayer.cc> <20240611215906.1106071-3-michael@niedermayer.cc> <4021f2c22c29c7ee12fa15870c0a5fecca615b41.camel@intel.com> MIME-Version: 1.0 In-Reply-To: <4021f2c22c29c7ee12fa15870c0a5fecca615b41.camel@intel.com> X-GND-Sasl: michael@niedermayer.cc Subject: Re: [FFmpeg-devel] [PATCH 3/4] avfilter/qsvvpp: Remove unreachable code 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="===============4690792472980332100==" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --===============4690792472980332100== Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="8Bx+wEju+vH9ym24" Content-Disposition: inline --8Bx+wEju+vH9ym24 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jun 12, 2024 at 08:19:17AM +0000, Xiang, Haihao wrote: > On Di, 2024-06-11 at 23:59 +0200, Michael Niedermayer wrote: > > Fixes: CID1598548 Logically dead code > >=20 > > Sponsored-by: Sovereign Tech Fund > > Signed-off-by: Michael Niedermayer > > --- > > =A0libavfilter/qsvvpp.c | 5 ----- > > =A01 file changed, 5 deletions(-) > >=20 > > diff --git a/libavfilter/qsvvpp.c b/libavfilter/qsvvpp.c > > index 1c9773df099..6adf9f6e841 100644 > > --- a/libavfilter/qsvvpp.c > > +++ b/libavfilter/qsvvpp.c > > @@ -1099,11 +1099,6 @@ int ff_qsvvpp_create_mfx_session(void *ctx, > > =A0=A0=A0=A0 if (sts < 0) > > =A0=A0=A0=A0=A0=A0=A0=A0 return ff_qsvvpp_print_error(ctx, sts, > > =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0= =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 "Error creating a MFX session"); > > -=A0=A0=A0 else if (sts > 0) { > > -=A0=A0=A0=A0=A0=A0=A0 ff_qsvvpp_print_warning(ctx, sts, > > -=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0= =A0=A0=A0=A0=A0=A0=A0=A0 "Warning in MFX session creation"); > > -=A0=A0=A0=A0=A0=A0=A0 return AVERROR_UNKNOWN; > > -=A0=A0=A0 } > > =A0 > > =A0=A0=A0=A0 *psession =3D session; > > =A0 >=20 > LGTM, thx will apply thx [...] --=20 Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB The educated differ from the uneducated as much as the living from the dead. -- Aristotle=20 --8Bx+wEju+vH9ym24 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iF0EABEKAB0WIQSf8hKLFH72cwut8TNhHseHBAsPqwUCZnK/vwAKCRBhHseHBAsP q/ijAJ9dVZ6DL3lRhhQwnvCCpvlZGqKfiACfTJfVLtY5eqityb9U4qir2Z+TTG4= =Z0+x -----END PGP SIGNATURE----- --8Bx+wEju+vH9ym24-- --===============4690792472980332100== 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". --===============4690792472980332100==--