2011-06-28 06:51:23 +00:00
|
|
|
plugin_LTLIBRARIES = libgstomx.la
|
|
|
|
|
|
|
|
libgstomx_la_SOURCES = \
|
|
|
|
gstomx.c \
|
|
|
|
gstomxvideodec.c \
|
|
|
|
gstomxmpeg4videodec.c \
|
2011-07-12 06:53:15 +00:00
|
|
|
gstomxh264dec.c \
|
2011-06-28 06:51:23 +00:00
|
|
|
gstbasevideocodec.c \
|
|
|
|
gstbasevideodecoder.c \
|
|
|
|
gstbasevideoencoder.c \
|
|
|
|
gstbasevideoutils.c
|
|
|
|
|
|
|
|
noinst_HEADERS = \
|
|
|
|
gstomxvideodec.h \
|
|
|
|
gstomxmpeg4videodec.h \
|
2011-07-12 06:53:15 +00:00
|
|
|
gstomxh264dec.h \
|
2011-06-28 06:51:23 +00:00
|
|
|
gstbasevideocodec.h \
|
|
|
|
gstbasevideodecoder.h \
|
2011-07-09 09:41:42 +00:00
|
|
|
gstbasevideoencoder.h \
|
|
|
|
gstbasevideoutils.h
|
2011-06-28 06:51:23 +00:00
|
|
|
|
2011-07-09 08:44:16 +00:00
|
|
|
fixbaseclasses = \
|
|
|
|
-DGstBaseVideoCodec=OMXBaseVideoCodec \
|
|
|
|
-DGstBaseVideoCodecClass=OMXBaseVideoCodecClass \
|
|
|
|
-DGstBaseVideoEncoder=OMXBaseVideoEncoder \
|
|
|
|
-DGstBaseVideoEncoderClass=OMXBaseVideoEncoderClass \
|
|
|
|
-DGstBaseVideoDecoder=OMXBaseVideoDecoder \
|
|
|
|
-DGstBaseVideoDecoderClass=OMXBaseVideoDecoderClass
|
|
|
|
|
2011-06-28 06:51:23 +00:00
|
|
|
libgstomx_la_CFLAGS = \
|
|
|
|
-DGST_USE_UNSTABLE_API=1 \
|
|
|
|
-I$(srcdir)/openmax \
|
|
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
|
|
$(GST_BASE_CFLAGS) \
|
2011-07-09 08:44:16 +00:00
|
|
|
$(GST_CFLAGS) \
|
|
|
|
$(fixbaseclasses)
|
2011-06-28 06:51:23 +00:00
|
|
|
libgstomx_la_LIBADD = \
|
|
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
|
|
-lgstvideo-@GST_MAJORMINOR@ \
|
|
|
|
$(GST_BASE_LIBS) \
|
|
|
|
$(GST_LIBS)
|
|
|
|
libgstomx_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
|
|
|
|
EXTRA_DIST = openmax
|
|
|
|
|