mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
e9297ba3eb
This plugin contains elements for calculating metrics of video streams, intended for objective video codec comparison. At the moment only SSIM metric is implemented (why would you need anything else anyway?). Also contains a helper videomeasure_collector element that collects measurement events and outputs them into a file (to be used with gst-launch). Other metrics may be implemented in the future along with a base class for all measurers. Fixes bug #594321.
16 lines
579 B
Makefile
16 lines
579 B
Makefile
plugin_LTLIBRARIES = libgstvideomeasure.la
|
|
|
|
noinst_HEADERS = gstvideomeasure_ssim.h gstvideomeasure_collector.h
|
|
|
|
libgstvideomeasure_la_SOURCES = \
|
|
gstvideomeasure.c \
|
|
gstvideomeasure_ssim.c \
|
|
gstvideomeasure_collector.c
|
|
|
|
libgstvideomeasure_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
libgstvideomeasure_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstvideo-@GST_MAJORMINOR@ $(GST_BASE_LIBS) $(GST_LIBS)
|
|
libgstvideomeasure_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstvideomeasure_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|