diff options
author | Martin Storsjö <martin@martin.st> | 2010-10-21 12:18:48 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-10-21 12:18:48 +0000 |
commit | 44b70ce5631e075980c0ff06e4727c9a1185ca81 (patch) | |
tree | 7772474c9a00406ef18ecdbaa68245909904a31f /libavformat/Makefile | |
parent | 8bf0f969547ec694a314764e7ca3d883bf416b21 (diff) | |
download | ffmpeg-44b70ce5631e075980c0ff06e4727c9a1185ca81.tar.gz |
rtsp: Untangle the dependencies between the RTSP/SDP demuxers and RTSP muxer
This allows compilation of one of them without requiring the others'
dependencies to be present.
Originally committed as revision 25535 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 2ba8b09938..56550dcd49 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -230,11 +230,11 @@ OBJS-$(CONFIG_RTP_MUXER) += rtp.o \ rtpenc_xiph.o \ avc.o OBJS-$(CONFIG_RTSP_DEMUXER) += rtsp.o httpauth.o -OBJS-$(CONFIG_RTSP_MUXER) += rtsp.o rtspenc.o httpauth.o +OBJS-$(CONFIG_RTSP_MUXER) += rtsp.o rtspenc.o httpauth.o \ + rtpenc_chain.o OBJS-$(CONFIG_SAP_DEMUXER) += sapdec.o OBJS-$(CONFIG_SAP_MUXER) += sapenc.o rtpenc_chain.o -OBJS-$(CONFIG_SDP_DEMUXER) += rtsp.o \ - rdt.o \ +OBJS-$(CONFIG_RTPDEC) += rdt.o \ rtp.o \ rtpdec.o \ rtpdec_amr.o \ @@ -247,8 +247,8 @@ OBJS-$(CONFIG_SDP_DEMUXER) += rtsp.o \ rtpdec_qt.o \ rtpdec_svq3.o \ rtpdec_vp8.o \ - rtpdec_xiph.o \ - rtpenc_chain.o + rtpdec_xiph.o +OBJS-$(CONFIG_SDP_DEMUXER) += rtsp.o OBJS-$(CONFIG_SEGAFILM_DEMUXER) += segafilm.o OBJS-$(CONFIG_SHORTEN_DEMUXER) += rawdec.o OBJS-$(CONFIG_SIFF_DEMUXER) += siff.o |