diff options
author | Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk> | 2008-09-09 17:56:10 +0000 |
---|---|---|
committer | Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk> | 2008-09-09 17:56:10 +0000 |
commit | e262a72516fe2e4e67e400a7d35058f19a71d0da (patch) | |
tree | 77fbed2b7a1752252585e3498231e183762b77ee /ext/jp2k/Makefile.am | |
parent | 7359989bdb60c61d32802c00a7c4cdb4362f96aa (diff) | |
download | gst-plugins-bad-e262a72516fe2e4e67e400a7d35058f19a71d0da.tar.gz gst-plugins-bad-e262a72516fe2e4e67e400a7d35058f19a71d0da.tar.bz2 gst-plugins-bad-e262a72516fe2e4e67e400a7d35058f19a71d0da.zip |
Add jp2k plugin. Fixes #550657.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/jp2k/Makefile.am:
* ext/jp2k/gstjasperdec.c: (gst_jasper_dec_base_init),
(gst_jasper_dec_class_init), (gst_jasper_dec_init),
(gst_jasper_dec_reset), (gst_jasper_dec_sink_setcaps),
(gst_jasper_dec_negotiate), (gst_jasper_dec_get_picture),
(gst_jasper_dec_chain), (gst_jasper_dec_set_property),
(gst_jasper_dec_get_property), (gst_jasper_dec_change_state),
(plugin_init):
* ext/jp2k/gstjasperdec.h:
Add jp2k plugin. Fixes #550657.
Diffstat (limited to 'ext/jp2k/Makefile.am')
-rw-r--r-- | ext/jp2k/Makefile.am | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ext/jp2k/Makefile.am b/ext/jp2k/Makefile.am new file mode 100644 index 00000000..ac5cd7cc --- /dev/null +++ b/ext/jp2k/Makefile.am @@ -0,0 +1,12 @@ +plugin_LTLIBRARIES = libgstjp2k.la + +libgstjp2k_la_SOURCES = gstjasperdec.c +libgstjp2k_la_CFLAGS = \ + $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(JP2K_CFLAGS) +libgstjp2k_la_LIBADD = \ + $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_MAJORMINOR) \ + $(GST_LIBS) $(JP2K_LIBS) +libgstjp2k_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) + +noinst_HEADERS = \ + gstjasperdec.h
\ No newline at end of file |