X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavutil%2FMakefile;h=58df75a94e4966c72d1dabd852ed118912923203;hb=6c0cf11f38f3306773401bf35174703cb4f12dd5;hp=65b2d25877b08ca58f0f9f4e44f21bfedbb5a0b4;hpb=9a9f3f151fa2d9cd66fdfdf72722465d11c296bb;p=ffmpeg diff --git a/libavutil/Makefile b/libavutil/Makefile index 65b2d25877b..58df75a94e4 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -31,6 +31,9 @@ HEADERS = adler32.h \ frame.h \ hash.h \ hmac.h \ + hwcontext.h \ + hwcontext_cuda.h \ + hwcontext_vdpau.h \ imgutils.h \ intfloat.h \ intreadwrite.h \ @@ -108,6 +111,7 @@ OBJS = adler32.o \ frame.o \ hash.o \ hmac.o \ + hwcontext.o \ imgutils.o \ integer.o \ intmath.o \ @@ -148,12 +152,16 @@ OBJS-$(!HAVE_ATOMICS_NATIVE) += atomic.o \ OBJS-$(CONFIG_LZO) += lzo.o OBJS-$(CONFIG_OPENCL) += opencl.o opencl_internal.o +OBJS-$(CONFIG_CUDA) += hwcontext_cuda.o +OBJS-$(CONFIG_VDPAU) += hwcontext_vdpau.o OBJS += $(COMPAT_OBJS:%=../compat/%) # Windows resource file SLIBOBJS-$(HAVE_GNU_WINDRES) += avutilres.o +SKIPHEADERS-$(CONFIG_CUDA) += hwcontext_cuda.h +SKIPHEADERS-$(CONFIG_VDPAU) += hwcontext_vdpau.h SKIPHEADERS-$(HAVE_ATOMICS_GCC) += atomic_gcc.h SKIPHEADERS-$(HAVE_ATOMICS_SUNCC) += atomic_suncc.h SKIPHEADERS-$(HAVE_ATOMICS_WIN32) += atomic_win32.h @@ -168,6 +176,7 @@ TESTPROGS = adler32 \ bprint \ cast5 \ camellia \ + color_utils \ cpu \ crc \ des \ @@ -177,6 +186,7 @@ TESTPROGS = adler32 \ file \ fifo \ float_dsp \ + hash \ hmac \ lfg \ lls \