From 392f91a61bf64e894414378a6deae9aef6417834 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sun, 26 Oct 2014 15:44:05 +0000 Subject: [PATCH] configure: check for more openh264 API that we need --- configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index e17e794857..85c693ae06 100644 --- a/configure.ac +++ b/configure.ac @@ -2583,8 +2583,10 @@ AG_GST_CHECK_FEATURE(OPENH264, [openh264 library], openh264, [ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include #include ]], [[ SFrameBSInfo frame_info; + SEncParamExt enc_params; + enc_params.iInputCsp = videoFormatI420; int *p = (int *) &frame_info.eFrameType; - *p = 0; + *p = RC_LOW_BW_MODE; ]])], [ AC_MSG_RESULT(yes) OPENH264_LIBS="-lopenh264 $PTHREAD_LIBS"