mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
a90585c686
This currently converts from ARGB64_F16 (16 bit float per component) to ARGB64 by clipping. We should add support for the F16 format and implement a conversion filter element that can apply gamma curves, change exposure, etc.
18 lines
614 B
Makefile
18 lines
614 B
Makefile
plugin_LTLIBRARIES = libgstopenexr.la
|
|
|
|
libgstopenexr_la_SOURCES = gstopenexrdec.cpp gstopenexr.c
|
|
libgstopenexr_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
$(OPENEXR_CFLAGS)
|
|
libgstopenexr_la_CXXFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CXXFLAGS) \
|
|
$(OPENEXR_CFLAGS)
|
|
libgstopenexr_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) $(OPENEXR_LIBS)
|
|
libgstopenexr_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstopenexr_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstopenexrdec.h \
|
|
gstopenexr.h
|