mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
e98fc783c8
Automatic inverse telecine element. Right now, it clumsily attempts to rearrange video fields into frames that don't have combing effects, and only works with 60i/24p content at 720x480. Later, it will handle other pulldown variations, change caps and smooth timestamps appropriately.
16 lines
358 B
Makefile
16 lines
358 B
Makefile
plugin_LTLIBRARIES = libgstinvtelecine.la
|
|
|
|
libgstinvtelecine_la_SOURCES = \
|
|
gstinvtelecine.c
|
|
|
|
libgstinvtelecine_la_CFLAGS = \
|
|
$(GST_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
|
|
libgstinvtelecine_la_LIBADD = \
|
|
$(GST_LIBS) \
|
|
$(GST_PLUGINS_BASE_LIBS)
|
|
|
|
libgstinvtelecine_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstinvtelecine_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|