diff options
author | James Almer <jamrial@gmail.com> | 2018-02-27 17:51:02 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-02-27 17:51:02 -0300 |
commit | 40102a21374096ce0ba05c67c6e7474f176af2d0 (patch) | |
tree | d4fe9a5606f7fa77b337b8fbc913f84e44fdd0f4 | |
parent | f9cb17f988cc72048f2051ce120ccbd6d05ce1c2 (diff) | |
download | ffmpeg-40102a21374096ce0ba05c67c6e7474f176af2d0.tar.gz |
avcodec/Makefile: skip nvdec.h header when nvdec is not enabled
Fixes make checkheaders now that the cuda headers are no longer in-tree
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index f09518b197..b496f0dfb0 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -1086,6 +1086,7 @@ SKIPHEADERS-$(CONFIG_JNI) += ffjni.h SKIPHEADERS-$(CONFIG_LIBVPX) += libvpx.h SKIPHEADERS-$(CONFIG_LIBWEBP_ENCODER) += libwebpenc_common.h SKIPHEADERS-$(CONFIG_MEDIACODEC) += mediacodecdec_common.h mediacodec_surface.h mediacodec_wrapper.h mediacodec_sw_buffer.h +SKIPHEADERS-$(CONFIG_NVDEC) += nvdec.h SKIPHEADERS-$(CONFIG_NVENC) += nvenc.h SKIPHEADERS-$(CONFIG_QSV) += qsv.h qsv_internal.h SKIPHEADERS-$(CONFIG_QSVDEC) += qsvdec.h |