mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
70 lines
1.8 KiB
Makefile
70 lines
1.8 KiB
Makefile
plugin_LTLIBRARIES = libgstopenmax.la
|
|
|
|
libgstopenmax_la_SOURCES = \
|
|
gstomx.c \
|
|
gstomxvideodec.c \
|
|
gstomxvideoenc.c \
|
|
gstomxmpeg4videodec.c \
|
|
gstomxh264dec.c \
|
|
gstomxh263dec.c \
|
|
gstomxwmvdec.c \
|
|
gstomxmpeg4videoenc.c \
|
|
gstomxh264enc.c \
|
|
gstomxh263enc.c \
|
|
gstbasevideocodec.c \
|
|
gstbasevideodecoder.c \
|
|
gstbasevideoencoder.c \
|
|
gstbasevideoutils.c \
|
|
gstbaseaudiodecoder.c \
|
|
gstbaseaudioencoder.c \
|
|
gstbaseaudioutils.c
|
|
|
|
noinst_HEADERS = \
|
|
gstomx.h \
|
|
gstomxvideodec.h \
|
|
gstomxvideoenc.h \
|
|
gstomxmpeg4videodec.h \
|
|
gstomxh264dec.h \
|
|
gstomxh263dec.h \
|
|
gstomxwmvdec.h \
|
|
gstomxmpeg4videoenc.h \
|
|
gstomxh264enc.h \
|
|
gstomxh263enc.h \
|
|
gstbasevideocodec.h \
|
|
gstbasevideodecoder.h \
|
|
gstbasevideoencoder.h \
|
|
gstbasevideoutils.h \
|
|
gstbaseaudiodecoder.h \
|
|
gstbaseaudioencoder.h \
|
|
gstbaseaudioutils.h
|
|
|
|
fixbaseclasses = \
|
|
-DGstBaseVideoCodec=OMXBaseVideoCodec \
|
|
-DGstBaseVideoCodecClass=OMXBaseVideoCodecClass \
|
|
-DGstBaseVideoEncoder=OMXBaseVideoEncoder \
|
|
-DGstBaseVideoEncoderClass=OMXBaseVideoEncoderClass \
|
|
-DGstBaseVideoDecoder=OMXBaseVideoDecoder \
|
|
-DGstBaseVideoDecoderClass=OMXBaseVideoDecoderClass \
|
|
-DGstBaseAudioDecoder=OMXBaseAudioDecoder \
|
|
-DGstBaseAudioDecoderClass=OMXBaseAudioDecoderClass \
|
|
-DGstBaseAudioEncoder=OMXBaseAudioEncoder \
|
|
-DGstBaseAudioEncoderClass=OMXBaseAudioEncoderClass
|
|
|
|
libgstopenmax_la_CFLAGS = \
|
|
-DGST_USE_UNSTABLE_API=1 \
|
|
-I$(srcdir)/openmax \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(fixbaseclasses)
|
|
libgstopenmax_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstaudio-@GST_MAJORMINOR@ \
|
|
-lgstpbutils-@GST_MAJORMINOR@ \
|
|
-lgstvideo-@GST_MAJORMINOR@ \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS)
|
|
libgstopenmax_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
EXTRA_DIST = openmax gstomx.conf
|
|
|