gstreamer/gst-libs/gst/vaapi/Makefile.am

254 lines
5.6 KiB
Makefile
Raw Normal View History

lib_LTLIBRARIES = \
libgstvaapi-@GST_MAJORMINOR@.la \
libgstvaapi-x11-@GST_MAJORMINOR@.la \
$(NULL)
2010-03-25 17:28:49 +00:00
if USE_GLX
lib_LTLIBRARIES += libgstvaapi-glx-@GST_MAJORMINOR@.la
endif
libgstvaapi_includedir = \
$(includedir)/gstreamer-@GST_MAJORMINOR@/gst/vaapi
libgstvaapi_cflags = \
-DGST_USE_UNSTABLE_API \
-I$(top_srcdir)/gst-libs \
$(GST_BASE_CFLAGS) \
$(GST_BASEVIDEO_CFLAGS) \
$(GST_VIDEO_CFLAGS) \
$(GST_CFLAGS) \
$(GST_CODEC_PARSERS_CFLAGS) \
$(LIBVA_CFLAGS) \
$(NULL)
libgstvaapi_libs = \
$(GST_BASE_LIBS) \
$(GST_BASEVIDEO_LIBS) \
$(GST_LIBS) \
2012-06-25 15:25:44 +00:00
$(GST_VIDEO_LIBS) \
$(GST_CODEC_PARSERS_LIBS) \
$(LIBVA_LIBS) \
$(NULL)
libgstvaapi_source_c = \
gstvaapicodec_objects.c \
gstvaapicontext.c \
gstvaapidecoder.c \
gstvaapidecoder_dpb.c \
gstvaapidecoder_h264.c \
gstvaapidecoder_mpeg2.c \
gstvaapidecoder_mpeg4.c \
gstvaapidecoder_objects.c \
gstvaapidecoder_vc1.c \
2010-01-25 16:15:01 +00:00
gstvaapidisplay.c \
2012-01-12 11:46:34 +00:00
gstvaapidisplaycache.c \
gstvaapiimage.c \
gstvaapiimageformat.c \
gstvaapiimagepool.c \
gstvaapiobject.c \
2010-03-24 12:57:54 +00:00
gstvaapiparamspecs.c \
2010-04-20 13:36:04 +00:00
gstvaapiprofile.c \
gstvaapisubpicture.c \
gstvaapisurface.c \
2010-03-12 17:45:18 +00:00
gstvaapisurfacepool.c \
gstvaapisurfaceproxy.c \
2010-03-16 09:15:48 +00:00
gstvaapiutils.c \
gstvaapivalue.c \
2010-03-12 23:48:50 +00:00
gstvaapivideobuffer.c \
gstvaapivideopool.c \
gstvaapivideosink.c \
2010-03-15 15:12:27 +00:00
gstvaapiwindow.c \
2010-01-25 16:15:01 +00:00
$(NULL)
libgstvaapi_source_h = \
gstvaapicontext.h \
gstvaapidecoder.h \
gstvaapidecoder_h264.h \
gstvaapidecoder_mpeg2.h \
gstvaapidecoder_mpeg4.h \
gstvaapidecoder_vc1.h \
2010-01-25 16:15:01 +00:00
gstvaapidisplay.h \
2012-01-12 11:46:34 +00:00
gstvaapidisplaycache.h \
gstvaapiimage.h \
gstvaapiimageformat.h \
gstvaapiimagepool.h \
gstvaapiobject.h \
2010-03-24 12:57:54 +00:00
gstvaapiparamspecs.h \
2010-04-20 13:36:04 +00:00
gstvaapiprofile.h \
gstvaapisubpicture.h \
gstvaapisurface.h \
2010-03-12 17:45:18 +00:00
gstvaapisurfacepool.h \
gstvaapisurfaceproxy.h \
gstvaapitypes.h \
gstvaapivalue.h \
2010-03-12 23:48:50 +00:00
gstvaapivideobuffer.h \
gstvaapivideopool.h \
gstvaapivideosink.h \
2010-03-15 15:12:27 +00:00
gstvaapiwindow.h \
$(NULL)
2010-03-16 09:21:15 +00:00
libgstvaapi_source_priv_h = \
glibcompat.h \
2011-09-12 11:00:04 +00:00
gstvaapi_priv.h \
gstvaapicodec_objects.h \
gstvaapicompat.h \
2010-03-16 09:21:15 +00:00
gstvaapidebug.h \
gstvaapidecoder_dpb.h \
gstvaapidecoder_objects.h \
gstvaapidecoder_priv.h \
gstvaapidisplay_priv.h \
gstvaapiobject_priv.h \
2011-12-13 15:53:15 +00:00
gstvaapisurface_priv.h \
2010-03-16 09:21:15 +00:00
gstvaapiutils.h \
gstvaapivideobuffer_priv.h \
2012-01-24 09:06:37 +00:00
gstvaapiworkarounds.h \
sysdeps.h \
2010-03-16 09:21:15 +00:00
$(NULL)
libgstvaapi_x11_source_c = \
gstvaapidisplay_x11.c \
gstvaapiutils.c \
gstvaapiutils_x11.c \
gstvaapiwindow_x11.c \
$(NULL)
libgstvaapi_x11_source_h = \
gstvaapidisplay_x11.h \
gstvaapiwindow_x11.h \
$(NULL)
libgstvaapi_x11_source_priv_h = \
gstvaapicompat.h \
gstvaapidisplay_x11_priv.h \
gstvaapiutils.h \
gstvaapiutils_x11.h \
$(NULL)
2010-03-25 17:28:49 +00:00
libgstvaapi_glx_source_c = \
gstvaapidisplay_glx.c \
gstvaapitexture.c \
2010-03-25 17:28:49 +00:00
gstvaapiutils.c \
gstvaapiutils_glx.c \
gstvaapiutils_x11.c \
gstvaapivideobuffer_glx.c \
gstvaapivideoconverter_glx.c \
2010-03-25 17:28:49 +00:00
gstvaapiwindow_glx.c \
$(NULL)
libgstvaapi_glx_source_h = \
gstvaapidisplay_glx.h \
gstvaapitexture.h \
gstvaapivideobuffer_glx.h \
gstvaapivideoconverter_glx.h \
2010-03-25 17:28:49 +00:00
gstvaapiwindow_glx.h \
$(NULL)
libgstvaapi_glx_source_priv_h = \
gstvaapicompat.h \
gstvaapidisplay_glx_priv.h \
2010-03-25 17:28:49 +00:00
gstvaapiutils.h \
gstvaapiutils_glx.h \
gstvaapiutils_x11.h \
$(NULL)
if USE_JPEG_DECODER
libgstvaapi_source_c += gstvaapidecoder_jpeg.c
libgstvaapi_source_h += gstvaapidecoder_jpeg.h
endif
if USE_LOCAL_CODEC_PARSERS
libgstvaapi_libs += \
$(top_builddir)/gst-libs/gst/codecparsers/libgstvaapi-codecparsers.la
endif
libgstvaapi_@GST_MAJORMINOR@_la_SOURCES = \
$(libgstvaapi_source_c) \
2010-03-16 09:21:15 +00:00
$(libgstvaapi_source_priv_h) \
$(NULL)
libgstvaapi_@GST_MAJORMINOR@include_HEADERS = \
$(libgstvaapi_source_h) \
$(NULL)
libgstvaapi_@GST_MAJORMINOR@includedir = \
$(libgstvaapi_includedir)
2010-01-25 16:15:01 +00:00
libgstvaapi_@GST_MAJORMINOR@_la_CFLAGS = \
$(libgstvaapi_cflags) \
2010-01-25 16:15:01 +00:00
$(NULL)
libgstvaapi_@GST_MAJORMINOR@_la_LIBADD = \
$(libgstvaapi_libs) \
2010-01-25 16:15:01 +00:00
$(NULL)
libgstvaapi_@GST_MAJORMINOR@_la_LDFLAGS = \
$(GST_ALL_LDFLAGS) \
$(NULL)
libgstvaapi_x11_@GST_MAJORMINOR@_la_SOURCES = \
$(libgstvaapi_x11_source_c) \
$(libgstvaapi_x11_source_priv_h) \
2010-01-25 16:15:01 +00:00
$(NULL)
libgstvaapi_x11_@GST_MAJORMINOR@include_HEADERS = \
$(libgstvaapi_x11_source_h) \
2010-01-25 16:15:01 +00:00
$(NULL)
libgstvaapi_x11_@GST_MAJORMINOR@includedir = \
$(libgstvaapi_includedir)
libgstvaapi_x11_@GST_MAJORMINOR@_la_CFLAGS = \
-DGST_USE_UNSTABLE_API \
-I$(top_srcdir)/gst-libs \
$(GLIB_CFLAGS) \
$(GST_BASE_CFLAGS) \
2010-03-26 08:00:32 +00:00
$(X11_CFLAGS) \
2010-01-25 16:15:01 +00:00
$(LIBVA_X11_CFLAGS) \
$(NULL)
libgstvaapi_x11_@GST_MAJORMINOR@_la_LIBADD = \
$(GLIB_LIBS) \
2010-03-26 08:00:32 +00:00
$(X11_LIBS) \
2010-01-25 16:15:01 +00:00
$(LIBVA_X11_LIBS) \
libgstvaapi-@GST_MAJORMINOR@.la \
$(NULL)
libgstvaapi_x11_@GST_MAJORMINOR@_la_LDFLAGS = \
$(GST_ALL_LDFLAGS) \
$(NULL)
2010-03-25 17:28:49 +00:00
libgstvaapi_glx_@GST_MAJORMINOR@_la_SOURCES = \
$(libgstvaapi_glx_source_c) \
$(libgstvaapi_glx_source_priv_h) \
$(NULL)
libgstvaapi_glx_@GST_MAJORMINOR@include_HEADERS = \
$(libgstvaapi_glx_source_h) \
$(NULL)
libgstvaapi_glx_@GST_MAJORMINOR@includedir = \
$(libgstvaapi_includedir)
libgstvaapi_glx_@GST_MAJORMINOR@_la_CFLAGS = \
-DGST_USE_UNSTABLE_API \
2010-03-25 17:28:49 +00:00
-I$(top_srcdir)/gst-libs \
$(GLIB_CFLAGS) \
$(GST_BASE_CFLAGS) \
2012-07-20 12:44:27 +00:00
$(GL_CFLAGS) \
2010-03-25 17:28:49 +00:00
$(LIBVA_GLX_CFLAGS) \
$(NULL)
libgstvaapi_glx_@GST_MAJORMINOR@_la_LIBADD = \
$(GLIB_LIBS) \
2012-07-20 12:44:27 +00:00
$(GL_LIBS) \
2010-03-25 17:28:49 +00:00
$(LIBVA_GLX_LIBS) \
libgstvaapi-x11-@GST_MAJORMINOR@.la \
$(NULL)
libgstvaapi_glx_@GST_MAJORMINOR@_la_LDFLAGS = \
$(GST_ALL_LDFLAGS) \
$(NULL)
# Extra clean files so that maintainer-clean removes *everything*
MAINTAINERCLEANFILES = Makefile.in