diff options
author | Martin Storsjö <martin@martin.st> | 2014-12-09 12:13:54 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2014-12-09 16:09:37 +0200 |
commit | fccfc22d1f304aef42a0b960e4c1d55ce67107f5 (patch) | |
tree | 6863171ac3a60c0db6d5cc4d6c26fbb3b8a676f6 | |
parent | 780cd20b00a69e26bbfffbb8eec16fbe999ea793 (diff) | |
download | ffmpeg-fccfc22d1f304aef42a0b960e4c1d55ce67107f5.tar.gz |
libavformat: Build hevc.o when building the RTP muxer
The RTP muxer enables the actual codepaths within sdp.c,
which depend on hevc.o since e5cfc8fd.
This fixes builds with --disable-everything --enable-muxer=rtp.
Signed-off-by: Martin Storsjö <martin@martin.st>
-rw-r--r-- | libavformat/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 15f205ac71..035eb72963 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -299,7 +299,7 @@ OBJS-$(CONFIG_RTP_MUXER) += rtp.o \ rtpenc_h264.o \ rtpenc_vp8.o \ rtpenc_xiph.o \ - avc.o + avc.o hevc.o OBJS-$(CONFIG_RTSP_DEMUXER) += rtsp.o rtspdec.o httpauth.o \ urldecode.o OBJS-$(CONFIG_RTSP_MUXER) += rtsp.o rtspenc.o httpauth.o \ |