nvdec: Makefile.am: move nvdec plugin into nvdecdir

Like all other hw plugins.
This commit is contained in:
Alexandre Janniaux 2021-03-13 18:07:57 +01:00
parent c5181b2187
commit 931ec8b2de
1 changed files with 3 additions and 2 deletions

View File

@ -1,16 +1,17 @@
nvdecdir = $(pluginsdir)/nvdec
nvdec_LTLIBRARIES =
libnvdec_plugin_la_SOURCES = \
hw/nvdec/nvdec.c hw/nvdec/nvdec_fmt.h \
hw/nvdec/hw_pool.c hw/nvdec/hw_pool.h
libnvdec_plugin_la_LIBADD = $(LIBDL) libvlc_hxxxhelper.la
if HAVE_NVDEC
codec_LTLIBRARIES += libnvdec_plugin.la
nvdec_LTLIBRARIES += libnvdec_plugin.la
endif
libnvdec_chroma_plugin_la_SOURCES = hw/nvdec/chroma.c hw/nvdec/nvdec_fmt.h
if HAVE_NVDEC
nvdec_LTLIBRARIES = libnvdec_chroma_plugin.la
nvdec_LTLIBRARIES += libnvdec_chroma_plugin.la
endif
libglinterop_nvdec_plugin_la_SOURCES = hw/nvdec/nvdec_gl.c \