diff options
author | Mark Thompson <mrt@jkqxz.net> | 2016-02-15 19:32:45 +0000 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-03-19 15:40:22 +0100 |
commit | 551c6775abb5e0ad34c26d7e23bc6fbbe8ccc9d4 (patch) | |
tree | 291515a20837144df215da96b7df06f516625563 /libavutil/Makefile | |
parent | d264c720f7b74286840719e506daba39f83b438b (diff) | |
download | ffmpeg-551c6775abb5e0ad34c26d7e23bc6fbbe8ccc9d4.tar.gz |
lavu: VAAPI hwcontext implementation
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavutil/Makefile')
-rw-r--r-- | libavutil/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index a095f0dd6e..0956703ce8 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -25,6 +25,7 @@ HEADERS = adler32.h \ hmac.h \ hwcontext.h \ hwcontext_cuda.h \ + hwcontext_vaapi.h \ hwcontext_vdpau.h \ imgutils.h \ intfloat.h \ @@ -108,11 +109,13 @@ OBJS = adler32.o \ OBJS-$(CONFIG_LZO) += lzo.o OBJS-$(CONFIG_CUDA) += hwcontext_cuda.o +OBJS-$(CONFIG_VAAPI) += hwcontext_vaapi.o OBJS-$(CONFIG_VDPAU) += hwcontext_vdpau.o OBJS += $(COMPAT_OBJS:%=../compat/%) SKIPHEADERS-$(CONFIG_CUDA) += hwcontext_cuda.h +SKIPHEADERS-$(CONFIG_VAAPI) += hwcontext_vaapi.h SKIPHEADERS-$(CONFIG_VDPAU) += hwcontext_vdpau.h SKIPHEADERS-$(HAVE_ATOMICS_GCC) += atomic_gcc.h SKIPHEADERS-$(HAVE_ATOMICS_SUNCC) += atomic_suncc.h |