diff mbox series

[FFmpeg-devel,v11,06/13] qsvenc: support multi-frame encode when MFX_VERSION < 2.0

Message ID 20220720084006.5033-7-haihao.xiang@intel.com
State New
Headers show
Series make QSV works with the Intel's oneVPL | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Xiang, Haihao July 20, 2022, 8:39 a.m. UTC
From: Haihao Xiang <haihao.xiang@intel.com>

Multi-frame encode isn't supported for MFX_VERSION >= 2.0[1][2]. This is
in preparation for oneVPL support

[1] https://spec.oneapi.io/versions/latest/elements/oneVPL/source/VPL_intel_media_sdk.html#msdk-full-name-feature-removals
[2] https://github.com/oneapi-src/oneVPL
---
 libavcodec/qsvenc.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Andreas Rheinhardt July 20, 2022, 10:45 p.m. UTC | #1
Xiang, Haihao:
> From: Haihao Xiang <haihao.xiang@intel.com>
> 
> Multi-frame encode isn't supported for MFX_VERSION >= 2.0[1][2]. This is
> in preparation for oneVPL support
> 
> [1] https://spec.oneapi.io/versions/latest/elements/oneVPL/source/VPL_intel_media_sdk.html#msdk-full-name-feature-removals
> [2] https://github.com/oneapi-src/oneVPL
> ---
>  libavcodec/qsvenc.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavcodec/qsvenc.h b/libavcodec/qsvenc.h
> index 4cadc38a59..40e2f65eff 100644
> --- a/libavcodec/qsvenc.h
> +++ b/libavcodec/qsvenc.h
> @@ -44,7 +44,7 @@
>  #else
>  #define QSV_HAVE_AVBR   0
>  #define QSV_HAVE_VCM    0
> -#define QSV_HAVE_MF     1
> +#define QSV_HAVE_MF     !QSV_ONEVPL
>  #endif
>  
>  #define QSV_COMMON_OPTS \

"support multi-frame encode when MFX_VERSION < 2.0" sounds as if you
were adding support for multi-frame encode. But the remaining commit
message makes it clear that you are actually restricting multi-frame
encode to MFX_VERSION < 2.0. So maybe you should reword the commit title
accordingly (some other commits in this patchset suffer from the same
defect).

- Andreas
Xiang, Haihao July 21, 2022, 5:20 a.m. UTC | #2
On Thu, 2022-07-21 at 00:45 +0200, Andreas Rheinhardt wrote:
> Xiang, Haihao:
> > From: Haihao Xiang <haihao.xiang@intel.com>
> > 
> > Multi-frame encode isn't supported for MFX_VERSION >= 2.0[1][2]. This is
> > in preparation for oneVPL support
> > 
> > [1] 
> > https://spec.oneapi.io/versions/latest/elements/oneVPL/source/VPL_intel_media_sdk.html#msdk-full-name-feature-removals
> > [2] https://github.com/oneapi-src/oneVPL
> > ---
> >  libavcodec/qsvenc.h | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/libavcodec/qsvenc.h b/libavcodec/qsvenc.h
> > index 4cadc38a59..40e2f65eff 100644
> > --- a/libavcodec/qsvenc.h
> > +++ b/libavcodec/qsvenc.h
> > @@ -44,7 +44,7 @@
> >  #else
> >  #define QSV_HAVE_AVBR   0
> >  #define QSV_HAVE_VCM    0
> > -#define QSV_HAVE_MF     1
> > +#define QSV_HAVE_MF     !QSV_ONEVPL
> >  #endif
> >  
> >  #define QSV_COMMON_OPTS \
> 
> "support multi-frame encode when MFX_VERSION < 2.0" sounds as if you
> were adding support for multi-frame encode. But the remaining commit
> message makes it clear that you are actually restricting multi-frame
> encode to MFX_VERSION < 2.0. So maybe you should reword the commit title
> accordingly (some other commits in this patchset suffer from the same
> defect).
> 

Thanks, I'll update the log in the next version.

-Haihao
diff mbox series

Patch

diff --git a/libavcodec/qsvenc.h b/libavcodec/qsvenc.h
index 4cadc38a59..40e2f65eff 100644
--- a/libavcodec/qsvenc.h
+++ b/libavcodec/qsvenc.h
@@ -44,7 +44,7 @@ 
 #else
 #define QSV_HAVE_AVBR   0
 #define QSV_HAVE_VCM    0
-#define QSV_HAVE_MF     1
+#define QSV_HAVE_MF     !QSV_ONEVPL
 #endif
 
 #define QSV_COMMON_OPTS \