mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
build: fix check for GstJpegParser
Right now the local JPEG parser is always compiled because the check for the upstreamed version is broken: it looks for an non existent symbol: GstJpegImage. This patch changes that check for< GstJpegFrameHdr. Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
This commit is contained in:
parent
e4ed64b731
commit
046c880d8a
1 changed files with 1 additions and 1 deletions
|
@ -367,7 +367,7 @@ AC_CACHE_CHECK([for JPEG parser],
|
|||
AC_COMPILE_IFELSE(
|
||||
[AC_LANG_PROGRAM(
|
||||
[[#include <gst/codecparsers/gstjpegparser.h>]],
|
||||
[[GstJpegImage jpeg_image;]])],
|
||||
[[GstJpegFrameHdr frame_hdr;]])],
|
||||
[ac_cv_have_gst_jpeg_parser="yes"],
|
||||
[ac_cv_have_gst_jpeg_parser="no"]
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue