1lib_LTLIBRARIES = libgstcodecparsers-@GST_API_VERSION@.la
2
3libgstcodecparsers_@GST_API_VERSION@_la_SOURCES = \
4	gstmpegvideoparser.c gsth264parser.c gstvc1parser.c gstmpeg4parser.c \
5	gsth265parser.c gstvp8parser.c gstvp8rangedecoder.c \
6	parserutils.c nalutils.c dboolhuff.c vp8utils.c \
7	gstjpegparser.c \
8	gstmpegvideometa.c \
9	gstjpeg2000sampling.c \
10	gstvp9parser.c vp9utils.c
11
12libgstcodecparsers_@GST_API_VERSION@includedir = \
13	$(includedir)/gstreamer-@GST_API_VERSION@/gst/codecparsers
14
15noinst_HEADERS = parserutils.h nalutils.h dboolhuff.h vp8utils.h vp9utils.h
16
17libgstcodecparsers_@GST_API_VERSION@include_HEADERS = \
18	gstmpegvideoparser.h gsth264parser.h gstvc1parser.h gstmpeg4parser.h \
19	gsth265parser.h gstvp8parser.h gstvp8rangedecoder.h \
20	codecparsers-prelude.h \
21	gstjpegparser.h \
22	gstmpegvideometa.h \
23	gstjpeg2000sampling.h \
24	gstvp9parser.h
25
26libgstcodecparsers_@GST_API_VERSION@_la_CFLAGS = \
27	$(GST_PLUGINS_BAD_CFLAGS) \
28	-DGST_USE_UNSTABLE_API \
29	-DBUILDING_GST_CODEC_PARSERS \
30	$(GST_CFLAGS) \
31	-Dvp8_norm=gst_codecparsers_vp8_norm \
32	-Dvp8dx_start_decode=gst_codecparsers_vp8dx_start_decode \
33	-Dvp8dx_bool_decoder_fill=gst_codecparsers_vp8dx_bool_decoder_fill
34
35libgstcodecparsers_@GST_API_VERSION@_la_LIBADD = \
36	$(GST_BASE_LIBS) \
37	$(GST_LIBS) \
38	$(LIBM)
39
40libgstcodecparsers_@GST_API_VERSION@_la_LDFLAGS = \
41	$(GST_LIB_LDFLAGS) \
42	$(GST_ALL_LDFLAGS) \
43	$(GST_LT_LDFLAGS)
44
45EXTRA_DIST = dboolhuff.LICENSE dboolhuff.PATENTS dboolhuff.AUTHORS
46