diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-05-18 13:56:22 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-05-19 10:59:52 +0200 |
commit | aa1246ea42911bf1d193fbaa3c89b2d5a6a809ab (patch) | |
tree | 70a7be45804ebb3a39b5c74cc53d8574696f0325 /libavfilter/Makefile | |
parent | 7997fc49ef5817bd86e24335ceba30ce6ee2332e (diff) | |
download | ffmpeg-aa1246ea42911bf1d193fbaa3c89b2d5a6a809ab.tar.gz |
lavfi: unify src_buffer and buffersrc.
Most of the code is moved to buffersrc.c
to help Git see the similarities.
src_buffer.c still contains the obsolete compatibility functions.
The format change detection code was removed as it has been
implemented directly in ffmpeg.
It can easily be brought back from the history.
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 1f9d4117d1..56c931a17d 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -28,6 +28,7 @@ OBJS = allfilters.o \ avfiltergraph.o \ buffer.o \ buffersink.o \ + buffersrc.o \ defaults.o \ drawutils.o \ formats.o \ |