mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
188bd155cd
Original commit message from CVS: * docs/plugins/Makefile.am: * docs/plugins/gst-plugins-good-plugins-docs.sgml: * docs/plugins/gst-plugins-good-plugins-sections.txt: * docs/plugins/gst-plugins-good-plugins.hierarchy: Added smoke and jpeg to the docs. * ext/jpeg/Makefile.am: * ext/jpeg/gstjpeg.c: (plugin_init): * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain): * ext/jpeg/gstjpegenc.h: * ext/jpeg/gstsmokedec.c: (gst_smokedec_init), (gst_smokedec_chain): * ext/jpeg/gstsmokedec.h: * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain): * ext/jpeg/gstsmokeenc.h: * ext/jpeg/smokecodec.h: Port smokedec (fixes #331905). Added some docs. Some cleanups.
18 lines
423 B
Makefile
18 lines
423 B
Makefile
plugin_LTLIBRARIES = libgstjpeg.la
|
|
|
|
libgstjpeg_la_SOURCES = \
|
|
gstjpeg.c \
|
|
gstjpegenc.c \
|
|
gstjpegdec.c \
|
|
gstsmokeenc.c \
|
|
smokecodec.c \
|
|
gstsmokedec.c
|
|
|
|
libgstjpeg_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstjpeg_la_LIBADD = $(GST_LIBS) $(JPEG_LIBS)
|
|
libgstjpeg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstjpegdec.h gstjpegenc.h \
|
|
gstsmokeenc.h gstsmokedec.h \
|
|
smokecodec.h smokeformat.h
|