Skip to content

Commit

Permalink
OneVPL v2.8 (#446)
Browse files Browse the repository at this point in the history
  • Loading branch information
tletnes authored Nov 1, 2022
1 parent 3afb9c0 commit 4077119
Show file tree
Hide file tree
Showing 27 changed files with 1,177 additions and 94 deletions.
2 changes: 1 addition & 1 deletion oneapi-doc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.2-provisional-rev-1",
"vpl_version": "2.7.1",
"vpl_version": "2.8.0",
"art_version": "1.0-rev-1"
}
3 changes: 1 addition & 2 deletions source/elements/oneVPL/include/vpl/mfx.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@
#include "mfxvp8.h"
#include "mfxjpeg.h"

#include "mfxsurfacepool.h"

#include "mfxsurfacepool.h"

#ifdef ONEVPL_EXPERIMENTAL
#include "mfxencodestats.h"
Expand Down
16 changes: 8 additions & 8 deletions source/elements/oneVPL/include/vpl/mfxbrc.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ typedef struct {
initial_cpb_removal_delay==0 && initial_cpb_removal_offset == 0 && HRD control is switched on. */
mfxU32 reserved1[7];
mfxU32 MaxFrameSize; /*!< Max frame size in bytes. Option for repack feature. Driver calls PAK until current frame size is
less than or equal to maxFrameSize, or number of repacking for this frame is equal to maxNumRePak. Repack is available
if there is driver support, MaxFrameSize !=0, and MaxNumRePak != 0. Ignored if maxNumRePak == 0. */
mfxU8 DeltaQP[8]; /*!< Option for repack feature. Ignored if maxNumRePak == 0 or maxNumRePak==0. If current
frame size > maxFrameSize and/or number of repacking (nRepack) for this frame <= maxNumRePak,
less than or equal to MaxFrameSize, or number of repacking for this frame is equal to MaxNumRePak. Repack is available
if there is driver support, MaxFrameSize !=0, and MaxNumRePak != 0. Ignored if MaxNumRePak == 0. */
mfxU8 DeltaQP[8]; /*!< Option for repack feature. Ignored if MaxNumRePak == 0 or MaxNumRePak==0. If current
frame size > MaxFrameSize and/or number of repacking (nRepack) for this frame <= MaxNumRePak,
PAK is called with QP = mfxBRCFrameCtrl::QpY + Sum(DeltaQP[i]), where i = [0,nRepack].
Non zero DeltaQP[nRepack] are ignored if nRepack > maxNumRePak.
If repacking feature is on ( maxFrameSize & maxNumRePak are not zero), it is calculated by the encoder. */
mfxU16 MaxNumRepak; /*!< Number of possible repacks in driver if current frame size > maxFrameSize. Ignored if maxFrameSize==0.
See maxFrameSize description. Possible values are in the range of 0 to 8. */
Non zero DeltaQP[nRepack] are ignored if nRepack > MaxNumRePak.
If repacking feature is on ( MaxFrameSize & MaxNumRePak are not zero), it is calculated by the encoder. */
mfxU16 MaxNumRepak; /*!< Number of possible repacks in driver if current frame size > MaxFrameSize. Ignored if MaxFrameSize==0.
See MaxFrameSize description. Possible values are in the range of 0 to 8. */
mfxU16 NumExtParam; /*!< Reserved for future use. */
mfxExtBuffer** ExtParam; /*!< Reserved for future use. */
} mfxBRCFrameCtrl;
Expand Down
Loading

0 comments on commit 4077119

Please sign in to comment.