2013-01-14 10:41:57 +00:00
|
|
|
plugin_LTLIBRARIES = libgstomx.la
|
2011-06-28 06:51:23 +00:00
|
|
|
|
2013-03-18 15:06:54 +00:00
|
|
|
if HAVE_VP8
|
|
|
|
VP8_C_FILES=gstomxvp8dec.c
|
|
|
|
VP8_H_FILES=gstomxvp8dec.h
|
|
|
|
endif
|
|
|
|
|
2013-03-19 08:36:18 +00:00
|
|
|
if HAVE_THEORA
|
|
|
|
THEORA_C_FILES=gstomxtheoradec.c
|
|
|
|
THEORA_H_FILES=gstomxtheoradec.h
|
|
|
|
endif
|
|
|
|
|
2017-07-12 09:01:15 +00:00
|
|
|
if HAVE_HEVC
|
|
|
|
H265_C_FILES = \
|
2017-07-12 12:35:10 +00:00
|
|
|
gstomxh265dec.c \
|
2017-07-12 09:01:15 +00:00
|
|
|
gstomxh265enc.c \
|
|
|
|
gstomxh265utils.c
|
|
|
|
H265_H_FILES = \
|
2017-07-12 12:35:10 +00:00
|
|
|
gstomxh265dec.h \
|
2017-07-12 09:01:15 +00:00
|
|
|
gstomxh265enc.h \
|
|
|
|
gstomxh265utils.h
|
|
|
|
endif
|
|
|
|
|
2013-01-14 10:41:57 +00:00
|
|
|
libgstomx_la_SOURCES = \
|
2011-06-28 06:51:23 +00:00
|
|
|
gstomx.c \
|
2019-03-22 10:11:13 +00:00
|
|
|
gstomxallocator.c \
|
2014-03-05 10:41:02 +00:00
|
|
|
gstomxbufferpool.c \
|
2014-03-03 15:15:24 +00:00
|
|
|
gstomxvideo.c \
|
2011-06-28 06:51:23 +00:00
|
|
|
gstomxvideodec.c \
|
2011-07-20 06:34:33 +00:00
|
|
|
gstomxvideoenc.c \
|
2014-05-10 21:12:54 +00:00
|
|
|
gstomxaudiodec.c \
|
2011-08-15 13:10:04 +00:00
|
|
|
gstomxaudioenc.c \
|
2013-03-18 15:30:40 +00:00
|
|
|
gstomxmjpegdec.c \
|
2011-06-28 06:51:23 +00:00
|
|
|
gstomxmpeg4videodec.c \
|
2013-03-18 15:34:21 +00:00
|
|
|
gstomxmpeg2videodec.c \
|
2011-07-12 06:53:15 +00:00
|
|
|
gstomxh264dec.c \
|
2017-07-03 11:17:11 +00:00
|
|
|
gstomxh264utils.c \
|
2011-07-25 09:44:56 +00:00
|
|
|
gstomxh263dec.c \
|
2011-07-25 10:01:05 +00:00
|
|
|
gstomxwmvdec.c \
|
2013-03-19 08:36:18 +00:00
|
|
|
$(VP8_C_FILES) \
|
|
|
|
$(THEORA_C_FILES) \
|
2017-07-12 09:01:15 +00:00
|
|
|
$(H265_C_FILES) \
|
2011-07-20 06:34:33 +00:00
|
|
|
gstomxmpeg4videoenc.c \
|
2011-07-25 09:32:51 +00:00
|
|
|
gstomxh264enc.c \
|
2011-07-29 10:06:21 +00:00
|
|
|
gstomxh263enc.c \
|
2014-07-13 16:22:39 +00:00
|
|
|
gstomxaacdec.c \
|
2014-05-10 21:12:54 +00:00
|
|
|
gstomxmp3dec.c \
|
2017-05-23 09:32:06 +00:00
|
|
|
gstomxmp3enc.c \
|
2014-04-04 12:11:58 +00:00
|
|
|
gstomxaacenc.c \
|
2014-11-13 00:55:02 +00:00
|
|
|
gstomxamrdec.c \
|
2014-04-04 12:11:58 +00:00
|
|
|
gstomxaudiosink.c \
|
|
|
|
gstomxanalogaudiosink.c \
|
|
|
|
gstomxhdmiaudiosink.c
|
2011-06-28 06:51:23 +00:00
|
|
|
|
|
|
|
noinst_HEADERS = \
|
2011-07-13 11:59:50 +00:00
|
|
|
gstomx.h \
|
2019-03-22 10:11:13 +00:00
|
|
|
gstomxallocator.h \
|
2014-07-23 09:28:12 +00:00
|
|
|
gstomxbufferpool.h \
|
2014-03-03 15:15:24 +00:00
|
|
|
gstomxvideo.h \
|
2011-06-28 06:51:23 +00:00
|
|
|
gstomxvideodec.h \
|
2011-07-20 06:34:33 +00:00
|
|
|
gstomxvideoenc.h \
|
2014-05-10 21:12:54 +00:00
|
|
|
gstomxaudiodec.h \
|
2011-08-15 13:10:04 +00:00
|
|
|
gstomxaudioenc.h \
|
2013-03-18 15:30:40 +00:00
|
|
|
gstomxmjpegdec.h \
|
2013-03-18 15:34:21 +00:00
|
|
|
gstomxmpeg2videodec.h \
|
2011-06-28 06:51:23 +00:00
|
|
|
gstomxmpeg4videodec.h \
|
2011-07-12 06:53:15 +00:00
|
|
|
gstomxh264dec.h \
|
2017-07-03 11:17:11 +00:00
|
|
|
gstomxh264utils.h \
|
2011-07-25 09:44:56 +00:00
|
|
|
gstomxh263dec.h \
|
2011-07-25 10:01:05 +00:00
|
|
|
gstomxwmvdec.h \
|
2013-03-19 08:36:18 +00:00
|
|
|
$(VP8_H_FILES) \
|
|
|
|
$(THEORA_H_FILES) \
|
2017-07-12 09:01:15 +00:00
|
|
|
$(H265_H_FILES) \
|
2011-07-20 06:34:33 +00:00
|
|
|
gstomxmpeg4videoenc.h \
|
2011-07-25 09:32:51 +00:00
|
|
|
gstomxh264enc.h \
|
2011-07-29 10:06:21 +00:00
|
|
|
gstomxh263enc.h \
|
2014-07-13 16:22:39 +00:00
|
|
|
gstomxaacdec.h \
|
2014-05-10 21:12:54 +00:00
|
|
|
gstomxmp3dec.h \
|
2017-05-23 09:32:06 +00:00
|
|
|
gstomxmp3enc.h \
|
2014-04-04 12:11:58 +00:00
|
|
|
gstomxaacenc.h \
|
2014-11-13 00:55:02 +00:00
|
|
|
gstomxamrdec.h \
|
2014-04-04 12:11:58 +00:00
|
|
|
gstomxaudiosink.h \
|
|
|
|
gstomxanalogaudiosink.h \
|
|
|
|
gstomxhdmiaudiosink.h
|
2011-06-28 06:51:23 +00:00
|
|
|
|
2013-02-21 09:59:29 +00:00
|
|
|
if !HAVE_EXTERNAL_OMX
|
|
|
|
OMX_INCLUDEPATH = -I$(abs_srcdir)/openmax
|
|
|
|
endif
|
|
|
|
|
2013-01-14 10:41:57 +00:00
|
|
|
libgstomx_la_CFLAGS = \
|
2011-06-28 06:51:23 +00:00
|
|
|
-DGST_USE_UNSTABLE_API=1 \
|
2013-02-21 09:59:29 +00:00
|
|
|
$(OMX_INCLUDEPATH) \
|
2014-04-15 16:06:38 +00:00
|
|
|
$(GST_GL_CFLAGS) \
|
2011-06-28 06:51:23 +00:00
|
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
|
|
$(GST_BASE_CFLAGS) \
|
2014-07-01 07:38:01 +00:00
|
|
|
$(GST_CFLAGS) \
|
2017-07-04 10:16:39 +00:00
|
|
|
$(GST_ALLOCATORS_CFLAGS) \
|
2014-07-01 07:38:01 +00:00
|
|
|
$(GMODULE_NO_EXPORT_CFLAGS)
|
2013-01-14 10:41:57 +00:00
|
|
|
libgstomx_la_LIBADD = \
|
2014-04-15 16:06:38 +00:00
|
|
|
$(GST_GL_LIBS) \
|
2011-06-28 06:51:23 +00:00
|
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
2012-04-12 19:57:32 +00:00
|
|
|
-lgstaudio-@GST_API_VERSION@ \
|
|
|
|
-lgstpbutils-@GST_API_VERSION@ \
|
|
|
|
-lgstvideo-@GST_API_VERSION@ \
|
2011-06-28 06:51:23 +00:00
|
|
|
$(GST_BASE_LIBS) \
|
2014-07-01 07:38:01 +00:00
|
|
|
$(GST_LIBS) \
|
2017-07-04 10:16:39 +00:00
|
|
|
$(GST_ALLOCATORS_LIBS) \
|
2014-07-01 07:38:01 +00:00
|
|
|
$(GMODULE_NO_EXPORT_LIBS)
|
2013-01-14 10:41:57 +00:00
|
|
|
libgstomx_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
2011-06-28 06:51:23 +00:00
|
|
|
|
2013-03-19 08:36:18 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
openmax \
|
|
|
|
gstomxvp8dec.c \
|
|
|
|
gstomxvp8dec.h \
|
|
|
|
gstomxtheoradec.c \
|
|
|
|
gstomxtheoradec.h
|