mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
b7660b122c
Adds a new plugin that has elements that perform geometric transformations to images. By geometric transformations I mean that the operations are functions that given the output pixel position, get the pixel position in the input image. This pixel is then copied from input to output. The gstgeometrictransform baseclass makes it easy to write such elements. It boils down to write the mapping function and exposing properties Already added the first of the elements, 'pinch'. It's a common effect in image editors, like gimp (distort -> pinch)
13 lines
616 B
Makefile
13 lines
616 B
Makefile
plugin_LTLIBRARIES = libgstgeometrictransform.la
|
|
|
|
libgstgeometrictransform_la_SOURCES = plugin.c \
|
|
gstgeometrictransform.c \
|
|
gstpinch.c
|
|
|
|
libgstgeometrictransform_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
libgstgeometrictransform_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_MAJORMINOR@ $(GST_BASE_LIBS) $(GST_LIBS)
|
|
libgstgeometrictransform_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstgeometrictransform_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstgeometrictransform.h gstpinch.h
|