diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-12-21 20:39:18 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-12-25 16:18:57 +0100 |
commit | e1d9dbf2d465448028bf396d7b37dbb642794678 (patch) | |
tree | 47be7f08d47188e31611ad6b4027985ce61fb158 /libavfilter/Makefile | |
parent | 1c9e340d35351858907f11c45b2691db708f3903 (diff) | |
download | ffmpeg-e1d9dbf2d465448028bf396d7b37dbb642794678.tar.gz |
lavfi: add a new function av_buffersrc_buffer().
It can be used to directly pass a AVFilterBufferRef to lavfi, avoiding a
memcpy.
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r-- | libavfilter/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index c269db5797..78c4692614 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -3,7 +3,7 @@ FFLIBS = avutil FFLIBS-$(CONFIG_MOVIE_FILTER) += avformat avcodec FFLIBS-$(CONFIG_SCALE_FILTER) += swscale -HEADERS = avfilter.h avfiltergraph.h vsrc_buffer.h +HEADERS = avfilter.h avfiltergraph.h buffersrc.h vsrc_buffer.h OBJS = allfilters.o \ avfilter.o \ |