gstreamer/gst/fieldanalysis/Makefile.am
Robert Swain 14fb720149 fieldanalysis: Add fieldanalysis element
This element analyses video buffers to identify if they are progressive,
interlaced or telecined and outputs buffers with appropriate flags for a
downstream element (which will be the deinterlace element, after some
forthcoming modifications) to be able to output progressive frames and
adjust timestamps resulting in a progressive stream.
2011-03-01 18:45:52 +01:00

27 lines
760 B
Makefile

plugin_LTLIBRARIES = libgstfieldanalysis.la
ORC_SOURCE=gstfieldanalysisorc
include $(top_srcdir)/common/orc.mak
libgstfieldanalysis_la_SOURCES = gstfieldanalysis.c gstfieldanalysis.h
nodist_libgstfieldanalysis_la_SOURCES = $(ORC_NODIST_SOURCES)
libgstfieldanalysis_la_CFLAGS = \
$(GST_PLUGINS_BAD_CFLAGS) \
$(GST_PLUGINS_BASE_CFLAGS) \
$(GST_BASE_CFLAGS) \
$(GST_CFLAGS) \
$(ORC_CFLAGS)
libgstfieldanalysis_la_LIBADD = \
$(top_builddir)/gst-libs/gst/video/libgstbasevideo-@GST_MAJORMINOR@.la \
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_MAJORMINOR@ \
$(GST_BASE_LIBS) \
$(GST_LIBS) \
$(ORC_LIBS)
libgstfieldanalysis_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstfieldanalysis_la_LIBTOOLFLAGS = --tag=disable-static
noinst_HEADERS = gstfieldanalysis.h