diff options
author | Philip Langdale <philipl@overt.org> | 2018-10-21 13:49:16 -0700 |
---|---|---|
committer | Philip Langdale <philipl@overt.org> | 2018-11-02 11:26:30 -0700 |
commit | d5272e94ab22bfc8f01fa3174e2c4664161ddf5a (patch) | |
tree | 00c8aecd37e3efa10dcf80ad2f3a17c870d96d54 /libavfilter/Makefile | |
parent | 598f0f39271d6033588b4d8ccc672c5bdc85fec7 (diff) | |
download | ffmpeg-streaming-d5272e94ab22bfc8f01fa3174e2c4664161ddf5a.zip ffmpeg-streaming-d5272e94ab22bfc8f01fa3174e2c4664161ddf5a.tar.gz |
avfilter/vf_yadif_cuda: CUDA accelerated yadif deinterlacer
This is a cuda implementation of yadif, which gives us a way to
do deinterlacing when using the nvdec hwaccel. In that scenario
we don't have access to the nvidia deinterlacer.
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r-- | libavfilter/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index 4b96d80..79a89a1 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -409,6 +409,7 @@ OBJS-$(CONFIG_WEAVE_FILTER) += vf_weave.o OBJS-$(CONFIG_XBR_FILTER) += vf_xbr.o OBJS-$(CONFIG_XSTACK_FILTER) += vf_stack.o framesync.o OBJS-$(CONFIG_YADIF_FILTER) += vf_yadif.o yadif_common.o +OBJS-$(CONFIG_YADIF_CUDA_FILTER) += vf_yadif_cuda.o vf_yadif_cuda.ptx.o yadif_common.o OBJS-$(CONFIG_ZMQ_FILTER) += f_zmq.o OBJS-$(CONFIG_ZOOMPAN_FILTER) += vf_zoompan.o OBJS-$(CONFIG_ZSCALE_FILTER) += vf_zscale.o |