configure: always build the MPEG-4 parser.

Always build the MPEG-4 parser for now as there are also core fixes
included in the parser that cannot be tested for with API checks.
This commit is contained in:
Gwenole Beauchesne 2013-06-14 11:39:54 +02:00
parent bcabfcc08b
commit 4559f691a1
2 changed files with 5 additions and 4 deletions

View file

@ -297,9 +297,10 @@ if test "$enable_builtin_codecparsers" = "yes"; then
ac_cv_have_gst_mpeg2_parser="no"
ac_cv_have_gst_h264_parser="no"
ac_cv_have_gst_jpeg_parser="no"
fi
else
PKG_CHECK_MODULES([GST_CODEC_PARSERS],
[gstreamer-codecparsers-$GST_API_VERSION >= $GST_PLUGINS_BAD_VERSION_REQUIRED])
fi
dnl ... MPEG-2 parser, with the required extensions
AC_CACHE_CHECK([for MPEG-2 parser],

View file

@ -21,9 +21,9 @@ libgstvaapi_codecparsers_libs = \
gen_source_c = parserutils.c
gen_source_h = parserutils.h
# Always build VC-1 parser for now
gen_source_c += gstvc1parser.c
gen_source_h += gstvc1parser.h
# Always build VC-1 and MPEG-4 parsers for now
gen_source_c += gstvc1parser.c gstmpeg4parser.c
gen_source_h += gstvc1parser.h gstmpeg4parser.h
if USE_LOCAL_CODEC_PARSERS_JPEG
gen_source_c += gstjpegparser.c