diff options
author | Martin Storsjö <martin@martin.st> | 2010-03-25 21:47:33 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-03-25 21:47:33 +0000 |
commit | aa8bf2fb8062880e02c0b8ffeb3bd5fce0753733 (patch) | |
tree | 6748e4ac3bc4ad7306ecdf523c85c8a245d80b0d /libavformat/Makefile | |
parent | b17d11c6329848b6f6e3af90baf2bcf044275ce9 (diff) | |
download | ffmpeg-aa8bf2fb8062880e02c0b8ffeb3bd5fce0753733.tar.gz |
Make RTSP use the generic http authentication code
Still hardcoded to use Basic auth, without parsing the reply headers
Originally committed as revision 22676 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 0832155c32..79430982da 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -215,8 +215,8 @@ OBJS-$(CONFIG_RTP_MUXER) += rtp.o \ rtpenc.o \ rtpenc_h264.o \ avc.o -OBJS-$(CONFIG_RTSP_DEMUXER) += rtsp.o -OBJS-$(CONFIG_RTSP_MUXER) += rtsp.o rtspenc.o +OBJS-$(CONFIG_RTSP_DEMUXER) += rtsp.o httpauth.o +OBJS-$(CONFIG_RTSP_MUXER) += rtsp.o rtspenc.o httpauth.o OBJS-$(CONFIG_SDP_DEMUXER) += rtsp.o \ rdt.o \ rtp.o \ |