mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 19:42:26 +00:00
3072dd80d2
timecodewait receives a timecode as an argument (either as string or as GstVideoTimeCode - one is gst-launch-friendly and the other is code-friendly), and it will drop all audio and video buffers until that timecode has been reached. https://bugzilla.gnome.org/show_bug.cgi?id=766419
10 lines
503 B
Makefile
10 lines
503 B
Makefile
plugin_LTLIBRARIES = libgsttimecode.la
|
|
|
|
libgsttimecode_la_SOURCES = plugin.c gsttimecodestamper.c gsttimecodewait.c
|
|
|
|
libgsttimecode_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgsttimecode_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) -lgstaudio-$(GST_API_VERSION) $(GST_LIBS) $(LIBM)
|
|
libgsttimecode_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgsttimecode_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = gsttimecodestamper.h gsttimecodewait.h
|