mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
1bd5b1ddf7
Original commit message from CVS: * configure.ac: Bump core/base requirements to released versions, to avoid confusion. * gst/deinterlace/Makefile.am: * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_set_caps): Use the new GstVideoFormat API to get strides, plane offsets etc.. For Y42B we still need to calculate these ourselves, since the lib in -base doesn't know about this format yet and we can't bump the requirement to CVS right now. Fix the Y42B stride, offset and size calculations for odd widths and heights while we're at it though (to match those in videotestsrc).
11 lines
364 B
Makefile
11 lines
364 B
Makefile
plugin_LTLIBRARIES = libgstdeinterlace.la
|
|
|
|
libgstdeinterlace_la_SOURCES = gstdeinterlace.c
|
|
libgstdeinterlace_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS)
|
|
libgstdeinterlace_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_MAJORMINOR) $(GST_BASE_LIBS)
|
|
libgstdeinterlace_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstdeinterlace.h
|
|
|