mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 15:56:42 +00:00
c3f3fe9f25
Original commit message from CVS: 2005-08-16 Andy Wingo <wingo@pobox.com> * ext/raw1394/gstdv1394src.c (gst_dv1394src_iso_receive): Note license info in the source code -- was only in the commit log before. * ext/dv/gstdvdec.h: * ext/dv/gstdvdec.c: Only decodes systemstream=FALSE dv video -- old pipelines using dvdec should probably have a dvdemux first. * ext/dv/gstdvdemux.h: * ext/dv/gstdvdemux.c: Split out from dvdec, chunks the incoming systemstream=TRUE data into frames, sets caps data, and spits out PCM audio in addition to systemstream=FALSE video frames. Operates in chain mode only for now; should make a getrange version as well. * ext/dv/gstdv.c: New file, registers the libgstdv plugin. * ext/dv/Makefile.am: Library name changed to libgstdv. Split dvdec into dvdemux and dvdec.
19 lines
501 B
Makefile
19 lines
501 B
Makefile
|
|
plugin_LTLIBRARIES = libgstdv.la
|
|
|
|
libgstdv_la_SOURCES = gstdv.c gstdvdec.c gstdvdemux.c
|
|
libgstdv_la_CFLAGS = $(GST_CFLAGS) $(LIBDV_CFLAGS)
|
|
libgstdv_la_LIBADD = $(LIBDV_LIBS) $(GST_BASE_LIBS)
|
|
libgstdv_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(GST_PLUGINS_BASE_LIBS)
|
|
|
|
noinst_HEADERS = gstdvdemux.h gstdvdec.h
|
|
|
|
#if HAVE_GTK
|
|
#noinst_PROGRAMS = demo-play
|
|
#endif
|
|
|
|
#demo_play_SOURCES = demo-play.c
|
|
#demo_play_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS)
|
|
#demo_play_LDFLAGS = $(GST_LIBS) $(GTK_LIBS)
|
|
|
|
EXTRA_DIST = NOTES
|