diff options
author | Martin Storsjö <martin@martin.st> | 2010-10-08 08:54:53 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-10-08 08:54:53 +0000 |
commit | a493f80a2c69c4b239366ad787058ad9e60aad29 (patch) | |
tree | 6f3579d116803747a43ac4453652e109337a1a5a /libavformat/Makefile | |
parent | 3d7422302547b02256a4a1ab5552f180455b50a2 (diff) | |
download | ffmpeg-a493f80a2c69c4b239366ad787058ad9e60aad29.tar.gz |
rtsp: Factorize out code for opening a chained RTP muxer
The new object file is added to the SDP demuxer in the makefile, since it
is needed in both the RTSP muxer and demuxer and in the SDP demuxer, due
to the current code coupling.
Originally committed as revision 25410 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 1f1c576a08..0436ccf602 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -243,7 +243,8 @@ OBJS-$(CONFIG_SDP_DEMUXER) += rtsp.o \ rtpdec_qt.o \ rtpdec_svq3.o \ rtpdec_vp8.o \ - rtpdec_xiph.o + rtpdec_xiph.o \ + rtpenc_chain.o OBJS-$(CONFIG_SEGAFILM_DEMUXER) += segafilm.o OBJS-$(CONFIG_SHORTEN_DEMUXER) += rawdec.o OBJS-$(CONFIG_SIFF_DEMUXER) += siff.o |