Skip to content

Commit

Permalink
[RT Common] Renamed oneVPL to Intel VPL (#6740)
Browse files Browse the repository at this point in the history
Add Cmake file
  • Loading branch information
arshadal55 authored May 2, 2024
1 parent 4a12479 commit cc40df7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ if (ENABLE_ITT)
endif()

message("")
message("********************** oneVPL GPU Runtime Configuration Summary **********************")
message("oneVPL:")
message("********************** Intel VPL GPU Runtime Configuration Summary **********************")
message("Intel VPL:")
message(" API (request to use this version) : ${API}")
message(" API_VERSION : ${API_VERSION}")
message(" API_FLAGS : ${API_FLAGS}")
Expand Down
4 changes: 2 additions & 2 deletions _studio/mfx_lib/shared/src/libmfxsw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ mfxStatus MFXInitEx(mfxInitParam par, mfxSession *session)
break;
}

// MFXInit / MFXInitEx in oneVPL is for work in legacy (1.x) mode only
// MFXInit / MFXInitEx in Intel VPL is for work in legacy (1.x) mode only
// app. must use MFXInitialize for 2.x features
if (par.Version.Major > 1)
{
Expand All @@ -154,7 +154,7 @@ mfxStatus MFXInitEx(mfxInitParam par, mfxSession *session)

mfxRes = MFXInit_Internal(par, session, implInterface, adapterNum);

// oneVPL should report 1.255 API version when it was initialized through MFXInit / MFXInitEx
// Intel VPL should report 1.255 API version when it was initialized through MFXInit / MFXInitEx
if (session && *session && mfxRes >= MFX_ERR_NONE)
{
(*session)->m_versionToReport.Major = 1;
Expand Down

0 comments on commit cc40df7

Please sign in to comment.