[FFmpeg-devel] [PATCH 1/2] lavc/qsvenc: ICQ/VCM/QVBR are not avilable on Linux
Carl Eugen Hoyos
ceffmpeg at gmail.com
Fri Dec 8 02:39:14 EET 2017
2017-12-07 7:24 GMT+01:00 Zhong Li <zhong.li at intel.com>:
> Signed-off-by: Zhong Li <zhong.li at intel.com>
> ---
> libavcodec/qsvenc.h | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/libavcodec/qsvenc.h b/libavcodec/qsvenc.h
> index 5cfd174..fae98e1 100644
> --- a/libavcodec/qsvenc.h
> +++ b/libavcodec/qsvenc.h
> @@ -44,9 +44,16 @@
> #define QSV_HAVE_LA QSV_VERSION_ATLEAST(1, 7)
> #define QSV_HAVE_LA_DS QSV_VERSION_ATLEAST(1, 8)
> #define QSV_HAVE_LA_HRD QSV_VERSION_ATLEAST(1, 11)
> +
> +#if defined(_WIN32)
> #define QSV_HAVE_ICQ QSV_VERSION_ATLEAST(1, 8)
> #define QSV_HAVE_VCM QSV_VERSION_ATLEAST(1, 8)
> #define QSV_HAVE_QVBR QSV_VERSION_ATLEAST(1, 11)
> +#else
> +#define QSV_HAVE_ICQ 0
> +#define QSV_HAVE_VCM 0
> +#define QSV_HAVE_QVBR 0
> +#endif
Perhaps "... are only available on Windows" would put
the commit message and the patch more in-line.
Carl Eugen
More information about the ffmpeg-devel
mailing list