diff --git a/latest/.buildinfo b/latest/.buildinfo deleted file mode 100644 index 10cd8ebc..00000000 --- a/latest/.buildinfo +++ /dev/null @@ -1,4 +0,0 @@ -# Sphinx build info version 1 -# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 12f9c0ab7389bf776a2e7c7261dd64b9 -tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/latest/.nojekyll b/latest/.nojekyll deleted file mode 100644 index e69de29b..00000000 diff --git a/latest/API_ref/VPL_enums.html b/latest/API_ref/VPL_enums.html index 0d0c9d11..0e03b0b7 100644 --- a/latest/API_ref/VPL_enums.html +++ b/latest/API_ref/VPL_enums.html @@ -490,6 +490,7 @@

Contents

  • mfxSurfaceType
  • mfxStructureType
  • mfxAISuperResolutionMode
  • +
  • mfxAISuperResolutionAlgorithm
  • mfxAIFrameInterpolationMode
  • mfxQualityInfoMode
  • AlphaChannelMode
  • @@ -1052,6 +1053,11 @@

    HEVC Levelsenumerator MFX_LEVEL_HEVC_62#
    +
    +
    +enumerator MFX_LEVEL_HEVC_85#
    +
    +

    AV1 Levels#

    @@ -5519,6 +5525,45 @@

    mfxAISuperResolutionMode +
    +enumerator MFX_AI_SUPER_RESOLUTION_MODE_SHARPEN#
    +

    In this mode, super Resolution is optimized or trained to have high sharpness level. This mode is recommended to be used in video conference(camera noise) or similar usage scenario.

    +
    + +
    +
    +enumerator MFX_AI_SUPER_RESOLUTION_MODE_ARTIFACTREMOVAL#
    +

    In this mode, Super Resolution is optimized or trained to remove encoding artifacts with medium sharpness level. This mode is recommended to be used in video surveillance or similar usage scenarios which may have camera noise and encoding artifacts due to limited network bandwidth.

    +
    + + + +

    +
    +

    mfxAISuperResolutionAlgorithm#

    +
    +
    +enum mfxAISuperResolutionAlgorithm#
    +

    Values:

    +
    +
    +enumerator MFX_AI_SUPER_RESOLUTION_ALGORITHM_DEFAULT#
    +

    Super Resolution algorithm by default. The library selects the most appropriate super resolution algorithm.

    +
    + +
    +
    +enumerator MFX_AI_SUPER_RESOLUTION_ALGORITHM_1#
    +

    Super Resolution algorithm1.

    +
    + +
    +
    +enumerator MFX_AI_SUPER_RESOLUTION_ALGORITHM_2#
    +

    Super Resolution algorithm2, MFX_AI_SUPER_RESOLUTION_ALGORITHM_2 video quality is expected to be better than MFX_AI_SUPER_RESOLUTION_ALGORITHM_1.

    +
    +
    @@ -5540,6 +5585,18 @@

    mfxAIFrameInterpolationMode +
    +enumerator MFX_AI_FRAME_INTERPOLATION_MODE_BEST_SPEED#
    +

    AI based frame interpolation in best speed.

    +
    + +
    +
    +enumerator MFX_AI_FRAME_INTERPOLATION_MODE_BEST_QUALITY#
    +

    AI based frame interpolation in best quality.

    +
    + @@ -5750,6 +5807,7 @@

    AlphaChannelModemfxSurfaceType
  • mfxStructureType
  • mfxAISuperResolutionMode
  • +
  • mfxAISuperResolutionAlgorithm
  • mfxAIFrameInterpolationMode
  • mfxQualityInfoMode
  • AlphaChannelMode
  • diff --git a/latest/API_ref/VPL_structs_memory.html b/latest/API_ref/VPL_structs_memory.html index 07689148..dc37db3d 100644 --- a/latest/API_ref/VPL_structs_memory.html +++ b/latest/API_ref/VPL_structs_memory.html @@ -1053,7 +1053,11 @@

    mfxFrameInfo

    FrameRate

    Specify the frame rate with the following formula: FrameRateExtN / FrameRateExtD.

    -

    For encoding, frame rate must be specified. For decoding, frame rate may be unspecified (FrameRateExtN and FrameRateExtD are all zeros.) In this case, the frame rate is defaulted to 30 frames per second.

    +

    For encoding, frame rate must be specified. For decoding, frame rate may be unspecified (FrameRateExtN and FrameRateExtD are all zeros.) In this case, the frame rate is defaulted to 0 frames per second, and timestamp will be calculated by 30fps in SDK.

    +

    In decoding process:

    +

    If there is frame rate information in bitstream, MFXVideoDECODE_DecodeHeader will carry actual frame rate in FrameRateExtN and FrameRateExtD parameters. MFXVideoDECODE_Init, MFXVideoDECODE_Query, MFXVideoDECODE_DecodeFrameAsync and MFXVideoDECODE_GetVideoParam will also carry these values for frame rate. Timestamp will be calculated by the actual frame rate.

    +

    If there is no frame rate information in bitstream, MFXVideoDECODE_DecodeHeader will assign 0 for frame rate in FrameRateExtN and FrameRateExtD parameters. MFXVideoDECODE_Init, MFXVideoDECODE_Query, MFXVideoDECODE_DecodeFrameAsync and MFXVideoDECODE_GetVideoParam will also assign 0 for frame rate. Timestamp will be calculated by 30fps.

    +

    If these two parameters are modified through MFXVideoDECODE_Init, then the modified values for frame rate will be used in MFXVideoDECODE_Query, MFXVideoDECODE_DecodeFrameAsync and MFXVideoDECODE_GetVideoParam. Timestamps will be calculated using the modified values.

    mfxU32 FrameRateExtN#
    diff --git a/latest/API_ref/VPL_structs_vpp.html b/latest/API_ref/VPL_structs_vpp.html index 86503e3c..baf3e5b2 100644 --- a/latest/API_ref/VPL_structs_vpp.html +++ b/latest/API_ref/VPL_structs_vpp.html @@ -1644,9 +1644,15 @@

    mfxExtVPPAISuperReso

    Indicates Super Resolution Mode. mfxAISuperResolutionMode enumerator.

    +
    +
    +mfxAISuperResolutionAlgorithm SRAlgorithm#
    +

    Indicates Super Resolution Algorithm. mfxAISuperResolutionAlgorithm enumerator.

    +
    +
    -mfxU32 reserved1[16]#
    +mfxU32 reserved1[15]#

    Reserved for future use.

    diff --git a/latest/Experimental.html b/latest/Experimental.html index 1954328e..2328bf7a 100644 --- a/latest/Experimental.html +++ b/latest/Experimental.html @@ -704,6 +704,31 @@

    Intel® VPL Experimental API

    MFX_AI_FRAME_INTERPOLATION_MODE_BEST_SPEED

    +

    2.14

    + + + +

    MFX_AI_FRAME_INTERPOLATION_MODE_BEST_QUALITY

    +

    2.14

    + + + +

    MFX_AI_SUPER_RESOLUTION_MODE_SHARPEN

    +

    2.14

    + + + +

    MFX_AI_SUPER_RESOLUTION_MODE_ARTIFACTREMOVAL

    +

    2.14

    + + + +

    mfxAISuperResolutionAlgorithm

    +

    2.14

    + + + diff --git a/latest/VPL_change_log.html b/latest/VPL_change_log.html index ddb32c32..153a416f 100644 --- a/latest/VPL_change_log.html +++ b/latest/VPL_change_log.html @@ -366,6 +366,7 @@

    Contents

    +
    +

    Version 2.14#

    +

    New in this release:

    + +
    -

    Version 2.13#

    +

    Version 2.13#

    New in this release:

    -

    Version 2.12#

    +

    Version 2.12#

    New in this release:

    -

    Version 2.11#

    +

    Version 2.11#

    New in this release:

    -

    Version 2.10#

    +

    Version 2.10#

    New in this release:

    -

    Version 2.9#

    +

    Version 2.9#

    New in this release:

    -

    Version 2.8#

    +

    Version 2.8#

    New in this release:

    -

    Version 2.7#

    +

    Version 2.7#

    New in this release:

    -

    Version 2.6#

    +

    Version 2.6#

    New in this release:

    -

    Version 2.5#

    +

    Version 2.5#

    New in this release:

    -

    Version 2.4#

    +

    Version 2.4#

    -

    Version 2.3#

    +

    Version 2.3#