mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +00:00
FEI: Add support for FEI conditional build
FEI(Flexible Encoding Infrastructure) is an extension to VA API. Define USE_H264_FEI_ENCODER based on fei header file and required structures availability. https://bugzilla.gnome.org/show_bug.cgi?id=785712 https://bugzilla.gnome.org/show_bug.cgi?id=784667
This commit is contained in:
parent
1ae42facc1
commit
1d287ef865
1 changed files with 40 additions and 0 deletions
40
configure.ac
40
configure.ac
|
@ -759,6 +759,7 @@ USE_JPEG_ENCODER=0
|
||||||
USE_VP8_ENCODER=0
|
USE_VP8_ENCODER=0
|
||||||
USE_H265_ENCODER=0
|
USE_H265_ENCODER=0
|
||||||
USE_VP9_ENCODER=0
|
USE_VP9_ENCODER=0
|
||||||
|
USE_H264_FEI_ENCODER=0
|
||||||
|
|
||||||
if test $USE_ENCODERS -eq 1; then
|
if test $USE_ENCODERS -eq 1; then
|
||||||
saved_CPPFLAGS="$CPPFLAGS"
|
saved_CPPFLAGS="$CPPFLAGS"
|
||||||
|
@ -890,6 +891,41 @@ VAEncMiscParameterTypeVP9PerSegmantParam misc_param;
|
||||||
])
|
])
|
||||||
AS_IF([test "x$ac_cv_have_vp9_encoding_api" = "xyes"], [USE_VP9_ENCODER=1])
|
AS_IF([test "x$ac_cv_have_vp9_encoding_api" = "xyes"], [USE_VP9_ENCODER=1])
|
||||||
|
|
||||||
|
dnl Check for H264 FEI Encoding API
|
||||||
|
AC_CHECK_HEADERS([va/va_fei_h264.h], [], [],
|
||||||
|
[
|
||||||
|
#include <va/va.h>
|
||||||
|
])
|
||||||
|
AC_CACHE_CHECK([for H264_FEI encoding API],
|
||||||
|
[ac_cv_have_h264_fei_encoding_api],
|
||||||
|
[
|
||||||
|
saved_CPPFLAGS="$CPPFLAGS"
|
||||||
|
CPPFLAGS="$CPPFLAGS $LIBVA_CFLAGS"
|
||||||
|
saved_LIBS="$LIBS"
|
||||||
|
LIBS="$LIBS $LIBVA_LIBS"
|
||||||
|
AC_COMPILE_IFELSE(
|
||||||
|
[
|
||||||
|
AC_LANG_PROGRAM(
|
||||||
|
[[
|
||||||
|
#include <va/va.h>
|
||||||
|
#ifdef HAVE_VA_VA_FEI_H264_H
|
||||||
|
# include <va/va_fei_h264.h>
|
||||||
|
#endif
|
||||||
|
]],
|
||||||
|
[[
|
||||||
|
VAEncMiscParameterFEIFrameControlH264 framectl;
|
||||||
|
VAEncFEIMBControlH264 mbcntrl;
|
||||||
|
VAEncFEIMVPredictorH264 mvpred;
|
||||||
|
VAEncFEIMBCodeH264 mbcode;
|
||||||
|
VAEncFEIDistortionH264 dist;
|
||||||
|
]])
|
||||||
|
],
|
||||||
|
[ac_cv_have_h264_fei_encoding_api="yes"],
|
||||||
|
[ac_cv_have_h264_fei_encoding_api="no"])
|
||||||
|
CPPFLAGS="$saved_CPPFLAGS"
|
||||||
|
LIBS="$saved_LIBS"
|
||||||
|
])
|
||||||
|
AS_IF([test "x$ac_cv_have_h264_fei_encoding_api" = "xyes"], [USE_H264_FEI_ENCODER=1])
|
||||||
CPPFLAGS="$saved_CPPFLAGS"
|
CPPFLAGS="$saved_CPPFLAGS"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -995,6 +1031,10 @@ AC_DEFINE_UNQUOTED([USE_VP9_ENCODER], [$USE_VP9_ENCODER],
|
||||||
[Defined to 1 if VP9 encoder is used])
|
[Defined to 1 if VP9 encoder is used])
|
||||||
AM_CONDITIONAL([USE_VP9_ENCODER], [test $USE_VP9_ENCODER -eq 1])
|
AM_CONDITIONAL([USE_VP9_ENCODER], [test $USE_VP9_ENCODER -eq 1])
|
||||||
|
|
||||||
|
AC_DEFINE_UNQUOTED([USE_H264_FEI_ENCODER], [$USE_H264_FEI_ENCODER],
|
||||||
|
[Defined to 1 if H264_FEI encoder is used])
|
||||||
|
AM_CONDITIONAL([USE_H264_FEI_ENCODER], [test $USE_H264_FEI_ENCODER -eq 1])
|
||||||
|
|
||||||
AC_DEFINE_UNQUOTED([USE_VA_VPP], [$USE_VA_VPP],
|
AC_DEFINE_UNQUOTED([USE_VA_VPP], [$USE_VA_VPP],
|
||||||
[Defined to 1 if video post-processing is used])
|
[Defined to 1 if video post-processing is used])
|
||||||
AM_CONDITIONAL([USE_VA_VPP], [test $USE_VA_VPP -eq 1])
|
AM_CONDITIONAL([USE_VA_VPP], [test $USE_VA_VPP -eq 1])
|
||||||
|
|
Loading…
Reference in a new issue