mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
c62dd0f0c3
It's still not possible to include headers of both in the same file or compile/link both into the same plugin but that shouldn't be necessary anyway.
42 lines
1 KiB
Makefile
42 lines
1 KiB
Makefile
plugin_LTLIBRARIES = libgstomx.la
|
|
|
|
libgstomx_la_SOURCES = \
|
|
gstomx.c \
|
|
gstomxvideodec.c \
|
|
gstomxmpeg4videodec.c \
|
|
gstbasevideocodec.c \
|
|
gstbasevideodecoder.c \
|
|
gstbasevideoencoder.c \
|
|
gstbasevideoutils.c
|
|
|
|
noinst_HEADERS = \
|
|
gstomxvideodec.h \
|
|
gstomxmpeg4videodec.h \
|
|
gstbasevideocodec.h \
|
|
gstbasevideodecoder.h \
|
|
gstbasevideoencoder.h
|
|
|
|
fixbaseclasses = \
|
|
-DGstBaseVideoCodec=OMXBaseVideoCodec \
|
|
-DGstBaseVideoCodecClass=OMXBaseVideoCodecClass \
|
|
-DGstBaseVideoEncoder=OMXBaseVideoEncoder \
|
|
-DGstBaseVideoEncoderClass=OMXBaseVideoEncoderClass \
|
|
-DGstBaseVideoDecoder=OMXBaseVideoDecoder \
|
|
-DGstBaseVideoDecoderClass=OMXBaseVideoDecoderClass
|
|
|
|
libgstomx_la_CFLAGS = \
|
|
-DGST_USE_UNSTABLE_API=1 \
|
|
-I$(srcdir)/openmax \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(fixbaseclasses)
|
|
libgstomx_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstvideo-@GST_MAJORMINOR@ \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS)
|
|
libgstomx_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
EXTRA_DIST = openmax
|
|
|