From cc40df77f0ea656bbb25d401d9c24505a15a4a50 Mon Sep 17 00:00:00 2001 From: arshadal55 <97259583+arshadal55@users.noreply.github.com> Date: Thu, 2 May 2024 02:11:42 -0700 Subject: [PATCH] [RT Common] Renamed oneVPL to Intel VPL (#6740) Add Cmake file --- CMakeLists.txt | 4 ++-- _studio/mfx_lib/shared/src/libmfxsw.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 71081d9fa7..727313878a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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}") diff --git a/_studio/mfx_lib/shared/src/libmfxsw.cpp b/_studio/mfx_lib/shared/src/libmfxsw.cpp index 93d7443001..78a78002bb 100644 --- a/_studio/mfx_lib/shared/src/libmfxsw.cpp +++ b/_studio/mfx_lib/shared/src/libmfxsw.cpp @@ -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) { @@ -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;