mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
7e7b4d68f4
Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com> https://bugzilla.gnome.org/show_bug.cgi?id=673925
39 lines
1.3 KiB
Makefile
39 lines
1.3 KiB
Makefile
lib_LTLIBRARIES = libgstcodecparsers-@GST_API_VERSION@.la
|
|
|
|
libgstcodecparsers_@GST_API_VERSION@_la_SOURCES = \
|
|
gstmpegvideoparser.c gsth264parser.c gstvc1parser.c gstmpeg4parser.c \
|
|
gsth265parser.c gstvp8parser.c gstvp8rangedecoder.c \
|
|
parserutils.c nalutils.c dboolhuff.c vp8utils.c \
|
|
gstjpegparser.c \
|
|
gstmpegvideometa.c
|
|
|
|
libgstcodecparsers_@GST_API_VERSION@includedir = \
|
|
$(includedir)/gstreamer-@GST_API_VERSION@/gst/codecparsers
|
|
|
|
noinst_HEADERS = parserutils.h nalutils.h dboolhuff.h vp8utils.h
|
|
|
|
libgstcodecparsers_@GST_API_VERSION@include_HEADERS = \
|
|
gstmpegvideoparser.h gsth264parser.h gstvc1parser.h gstmpeg4parser.h \
|
|
gsth265parser.h gstvp8parser.h gstvp8rangedecoder.h \
|
|
gstjpegparser.h \
|
|
gstmpegvideometa.h
|
|
|
|
libgstcodecparsers_@GST_API_VERSION@_la_CFLAGS = \
|
|
$(GST_PLUGINS_BAD_CFLAGS) \
|
|
-DGST_USE_UNSTABLE_API \
|
|
$(GST_CFLAGS) \
|
|
-Dvp8_norm=gst_codecparsers_vp8_norm \
|
|
-Dvp8dx_start_decode=gst_codecparsers_vp8dx_start_decode \
|
|
-Dvp8dx_bool_decoder_fill=gst_codecparsers_vp8dx_bool_decoder_fill
|
|
|
|
libgstcodecparsers_@GST_API_VERSION@_la_LIBADD = \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(LIBM)
|
|
|
|
libgstcodecparsers_@GST_API_VERSION@_la_LDFLAGS = \
|
|
$(GST_LIB_LDFLAGS) \
|
|
$(GST_ALL_LDFLAGS) \
|
|
$(GST_LT_LDFLAGS)
|
|
|
|
EXTRA_DIST = dboolhuff.LICENSE dboolhuff.PATENTS dboolhuff.AUTHORS
|