From 4ad0d7bbbc6c63d01a6df513823cb10cf0d9bc45 Mon Sep 17 00:00:00 2001 From: "Chen, Bohan" Date: Tue, 21 May 2024 02:35:09 +0000 Subject: [PATCH] [Encode] Fix destruction noexcept unmatching issue --- .../mfx_lib/encode_hw/h264/include/mfx_h264_encode_hw_utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_studio/mfx_lib/encode_hw/h264/include/mfx_h264_encode_hw_utils.h b/_studio/mfx_lib/encode_hw/h264/include/mfx_h264_encode_hw_utils.h index 60e8770c16..9d41a20438 100644 --- a/_studio/mfx_lib/encode_hw/h264/include/mfx_h264_encode_hw_utils.h +++ b/_studio/mfx_lib/encode_hw/h264/include/mfx_h264_encode_hw_utils.h @@ -2952,7 +2952,7 @@ class H264EncTools ImplementationAvc(VideoCORE * core); - virtual ~ImplementationAvc() noexcept override; + virtual ~ImplementationAvc() override; virtual mfxStatus Init(mfxVideoParam * par) override;