diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2008-04-11 13:08:24 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2008-04-11 13:08:24 +0000 |
commit | 2079938fc2dbc5672bd4505eb7d74cee61469d82 (patch) | |
tree | eb9412016147519aabe84100560b2ed34dc5f607 /gst/cdxaparse/Makefile.am | |
parent | 5788aba92cd13a82d993c0dfaa2a10a9d8ec677b (diff) | |
download | gst-plugins-bad-2079938fc2dbc5672bd4505eb7d74cee61469d82.tar.gz gst-plugins-bad-2079938fc2dbc5672bd4505eb7d74cee61469d82.tar.bz2 gst-plugins-bad-2079938fc2dbc5672bd4505eb7d74cee61469d82.zip |
gst/cdxaparse/: Port VCD parser (formerly cdxastrip) from 0.8 to 0.10. Doesn't do anything the 0.8 version didn't do ...
Original commit message from CVS:
* gst/cdxaparse/Makefile.am:
* gst/cdxaparse/gstcdxaparse.c:
* gst/cdxaparse/gstcdxastrip.c:
* gst/cdxaparse/gstcdxastrip.h:
* gst/cdxaparse/gstvcdparse.c:
* gst/cdxaparse/gstvcdparse.h:
Port VCD parser (formerly cdxastrip) from 0.8 to 0.10. Doesn't do
anything the 0.8 version didn't do though.
Diffstat (limited to 'gst/cdxaparse/Makefile.am')
-rw-r--r-- | gst/cdxaparse/Makefile.am | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gst/cdxaparse/Makefile.am b/gst/cdxaparse/Makefile.am index 07a2d076..db2a333d 100644 --- a/gst/cdxaparse/Makefile.am +++ b/gst/cdxaparse/Makefile.am @@ -1,21 +1,22 @@ plugin_LTLIBRARIES = libgstcdxaparse.la -# gstcdxastrip.c -# gstcdxastrip.h - libgstcdxaparse_la_SOURCES = \ - gstcdxaparse.c + gstcdxaparse.c \ + gstvcdparse.c noinst_HEADERS = \ - gstcdxaparse.h + gstcdxaparse.h \ + gstvcdparse.h libgstcdxaparse_la_CFLAGS = \ $(GST_CFLAGS) \ + $(GST_BASE_CFLAGS) \ $(GST_PLUGINS_BASE_CFLAGS) libgstcdxaparse_la_LIBADD = \ $(GST_LIBS) \ + $(GST_BASE_LIBS) \ $(GST_PLUGINS_BASE_LIBS) \ -lgstriff-@GST_MAJORMINOR@ |