diff options
author | Måns Rullgård <mans@mansr.com> | 2010-07-18 20:19:08 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-07-18 20:19:08 +0000 |
commit | a1db009e6c0a51804ec8e1046b1ed132ab54ff59 (patch) | |
tree | b042e0146b0d94c3de0de8d2f993563516559e75 /libavformat/Makefile | |
parent | 1ee076b1b154f580a86e079c9b986b25cca39238 (diff) | |
download | ffmpeg-a1db009e6c0a51804ec8e1046b1ed132ab54ff59.tar.gz |
Add MD5 protocol
This is a write-only protocol which computes the md5sum of data written,
and on close writes this to the designated output or stdout if none
is specified. It can be used to test muxers without writing an actual
file.
Originally committed as revision 24309 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index f8865ac9d9..b140fe8688 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -284,6 +284,7 @@ OBJS-$(CONFIG_FILE_PROTOCOL) += file.o OBJS-$(CONFIG_GOPHER_PROTOCOL) += gopher.o OBJS-$(CONFIG_HTTP_PROTOCOL) += http.o httpauth.o OBJS-$(CONFIG_MMST_PROTOCOL) += mmst.o asf.o +OBJS-$(CONFIG_MD5_PROTOCOL) += md5proto.o OBJS-$(CONFIG_PIPE_PROTOCOL) += file.o # external or internal rtmp |