Skip to content

Commit

Permalink
Fix GCC14 compilation issue
Browse files Browse the repository at this point in the history
Fix: intel#1797
Signed-off-by: Jay Yang <[email protected]>
  • Loading branch information
MicroYY committed May 31, 2024
1 parent f4d9472 commit d9e0cb5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ class MhwVdboxVdencInterfaceG11 : public MhwVdboxVdencInterfaceGeneric<TVdencCmd
//!
//! \brief Constructor
//!
MhwVdboxVdencInterfaceG11<TVdencCmds>(PMOS_INTERFACE osInterface) : MhwVdboxVdencInterfaceGeneric<TVdencCmds>(osInterface)
MhwVdboxVdencInterfaceG11(PMOS_INTERFACE osInterface) : MhwVdboxVdencInterfaceGeneric<TVdencCmds>(osInterface)
{
MHW_FUNCTION_ENTER;

Expand Down
2 changes: 1 addition & 1 deletion media_driver/agnostic/gen8/hw/vdbox/mhw_vdbox_mfx_g8_X.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class MhwVdboxMfxInterfaceG8 : public MhwVdboxMfxInterfaceGeneric<TMfxCmds, mhw_
//!
//! \brief Constructor
//!
MhwVdboxMfxInterfaceG8<TMfxCmds>(
MhwVdboxMfxInterfaceG8(
PMOS_INTERFACE osInterface,
MhwMiInterface *miInterface,
MhwCpInterface *cpInterface,
Expand Down
2 changes: 1 addition & 1 deletion media_driver/agnostic/gen9/hw/vdbox/mhw_vdbox_hcp_g9_X.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class MhwVdboxHcpInterfaceG9 : public MhwVdboxHcpInterfaceGeneric<THcpCmds>
//!
//! \brief Constructor
//!
MhwVdboxHcpInterfaceG9<THcpCmds>(
MhwVdboxHcpInterfaceG9(
PMOS_INTERFACE osInterface,
MhwMiInterface *miInterface,
MhwCpInterface *cpInterface,
Expand Down
2 changes: 1 addition & 1 deletion media_driver/agnostic/gen9/hw/vdbox/mhw_vdbox_mfx_g9_X.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class MhwVdboxMfxInterfaceG9 : public MhwVdboxMfxInterfaceGeneric<TMfxCmds, mhw_
//!
//! \brief Constructor
//!
MhwVdboxMfxInterfaceG9<TMfxCmds>(
MhwVdboxMfxInterfaceG9(
PMOS_INTERFACE osInterface,
MhwMiInterface *miInterface,
MhwCpInterface *cpInterface,
Expand Down
2 changes: 1 addition & 1 deletion media_driver/agnostic/gen9/hw/vdbox/mhw_vdbox_vdenc_g9_X.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class MhwVdboxVdencInterfaceG9 : public MhwVdboxVdencInterfaceGeneric<TVdencCmds
//!
//! \brief Constructor
//!
MhwVdboxVdencInterfaceG9<TVdencCmds>(PMOS_INTERFACE osInterface) : MhwVdboxVdencInterfaceGeneric<TVdencCmds>(osInterface)
MhwVdboxVdencInterfaceG9(PMOS_INTERFACE osInterface) : MhwVdboxVdencInterfaceGeneric<TVdencCmds>(osInterface)
{
MHW_FUNCTION_ENTER;

Expand Down

0 comments on commit d9e0cb5

Please sign in to comment.