Skip to content

Commit 9e689d2

Browse files
authored
Update product names (#192)
Update legacy and current product names to be compliant with product names DB guidelines. Signed-off-by: Kristal Dale <[email protected]>
1 parent bd87ec7 commit 9e689d2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

source/elements/oneVPL/include/onevpl/mfxdefs.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
#define MFX_VERSION_MINOR ((MFX_VERSION) % 1000)
3232
#endif
3333

34-
/*! This is correspondent version of MediaSDK Legacy API which is used as a basis
35-
for the current oneVPL API. */
34+
/*! This is correspondent version of the Intel(r) Media SDK legacy API that is used as a basis
35+
for the current oneAPI Video Processing Library (oneVPL) API. */
3636

3737
#define MFX_LEGACY_VERSION 1034
3838

@@ -58,7 +58,7 @@ extern "C"
5858
/* The general rule for alignment is following:
5959
- structures with pointers have 4/8 bytes alignment on 32/64 bit systems
6060
- structures with fields of type mfxU64/mfxF64 (unsigned long long / double)
61-
have alignment 8 bytes on 64 bit and 32 bit Windows, on Linux alignment is 4 bytes
61+
have alignment 8 bytes on 64 bit and 32 bit Windows*, on Linux* alignment is 4 bytes
6262
- all the rest structures are 4 bytes aligned
6363
- there are several exceptions: some structs which had 4-byte alignment were extended
6464
with pointer / long type fields; such structs have 4-byte alignment to keep binary
@@ -70,11 +70,11 @@ extern "C"
7070
#if defined(_WIN64) || defined(__LP64__)
7171
#define MFX_PACK_BEGIN_STRUCT_W_PTR() MFX_PACK_BEGIN_X(8)
7272
#define MFX_PACK_BEGIN_STRUCT_W_L_TYPE() MFX_PACK_BEGIN_X(8)
73-
/* 32-bit ILP32 data model Windows (Intel architecture) */
73+
/* 32-bit ILP32 data model Windows* (Intel(r) architecture) */
7474
#elif defined(_WIN32) || defined(_M_IX86) && !defined(__linux__)
7575
#define MFX_PACK_BEGIN_STRUCT_W_PTR() MFX_PACK_BEGIN_X(4)
7676
#define MFX_PACK_BEGIN_STRUCT_W_L_TYPE() MFX_PACK_BEGIN_X(8)
77-
/* 32-bit ILP32 data model Linux */
77+
/* 32-bit ILP32 data model Linux* */
7878
#elif defined(__ILP32__)
7979
#define MFX_PACK_BEGIN_STRUCT_W_PTR() MFX_PACK_BEGIN_X(4)
8080
#define MFX_PACK_BEGIN_STRUCT_W_L_TYPE() MFX_PACK_BEGIN_X(4)

source/elements/oneVPL/include/onevpl/mfxstructures.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2291,7 +2291,7 @@ enum {
22912291

22922292
MFX_MEMTYPE_INTERNAL_FRAME = 0x0001, /*!< Allocation request for internal frames */
22932293
MFX_MEMTYPE_EXTERNAL_FRAME = 0x0002, /*!< Allocation request for I/O frames */
2294-
MFX_MEMTYPE_EXPORT_FRAME = 0x0008, /*!< Application requests frame handle export to some associated object. For Linux frame handle can be
2294+
MFX_MEMTYPE_EXPORT_FRAME = 0x0008, /*!< Application requests frame handle export to some associated object. For Linux* frame handle can be
22952295
considered to be exported to DRM Prime FD, DRM FLink or DRM FrameBuffer Handle. Specifics of export
22962296
types and export procedure depends on external frame allocator implementation */
22972297
MFX_MEMTYPE_SHARED_RESOURCE = MFX_MEMTYPE_EXPORT_FRAME, /*!< For DX11 allocation use shared resource bind flag. */

0 commit comments

Comments
 (0)