From 843665f109ee76b07564af09252e658198fb3b17 Mon Sep 17 00:00:00 2001 From: Julien Moutte Date: Fri, 26 Oct 2007 16:08:04 +0000 Subject: Add a simple MPEG4 ES parser. Original commit message from CVS: 2007-10-26 Julien MOUTTE * configure.ac: * gst/mpeg4videoparse/Makefile.am: * gst/mpeg4videoparse/mpeg4videoparse.c: (gst_mpeg4vparse_drain), (gst_mpeg4vparse_chain), (gst_mpeg4vparse_sink_setcaps), (gst_mpeg4vparse_sink_event), (gst_mpeg4vparse_cleanup), (gst_mpeg4vparse_change_state), (gst_mpeg4vparse_dispose), (gst_mpeg4vparse_base_init), (gst_mpeg4vparse_class_init), (gst_mpeg4vparse_init), (plugin_init): * gst/mpeg4videoparse/mpeg4videoparse.h: Add a simple MPEG4 ES parser. --- gst/mpeg4videoparse/Makefile.am | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 gst/mpeg4videoparse/Makefile.am (limited to 'gst/mpeg4videoparse/Makefile.am') diff --git a/gst/mpeg4videoparse/Makefile.am b/gst/mpeg4videoparse/Makefile.am new file mode 100644 index 00000000..793b013f --- /dev/null +++ b/gst/mpeg4videoparse/Makefile.am @@ -0,0 +1,9 @@ + +plugin_LTLIBRARIES = libgstmpeg4videoparse.la + +libgstmpeg4videoparse_la_SOURCES = mpeg4videoparse.c +libgstmpeg4videoparse_la_CFLAGS = $(GST_CFLAGS) +libgstmpeg4videoparse_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) +libgstmpeg4videoparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) + +noinst_HEADERS = mpeg4videoparse.h -- cgit v1.2.1