From 931ec8b2de2c8be30ad272157da462afbbf35634 Mon Sep 17 00:00:00 2001 From: Alexandre Janniaux Date: Sat, 13 Mar 2021 18:07:57 +0100 Subject: [PATCH] nvdec: Makefile.am: move nvdec plugin into nvdecdir Like all other hw plugins. --- modules/hw/nvdec/Makefile.am | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/hw/nvdec/Makefile.am b/modules/hw/nvdec/Makefile.am index 90e8c2796d..39982910ce 100644 --- a/modules/hw/nvdec/Makefile.am +++ b/modules/hw/nvdec/Makefile.am @@ -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 \