Mercurial > libavformat.hg
diff Makefile @ 5904:5564d7f2ed5a libavformat
Implement support to RTMP, RTMPT, RTMPE, RTMPTE, RTMPS protocols via
librtmp.
Patch by Howard Chu <hyc * highlandsun * com>.
| author | stefano |
|---|---|
| date | Sun, 28 Mar 2010 13:39:36 +0000 |
| parents | 4b42835727aa |
| children | 326378da363a |
line wrap: on
line diff
--- a/Makefile Sun Mar 28 10:31:22 2010 +0000 +++ b/Makefile Sun Mar 28 13:39:36 2010 +0000 @@ -274,7 +274,12 @@ OBJS-$(CONFIG_GOPHER_PROTOCOL) += gopher.o OBJS-$(CONFIG_HTTP_PROTOCOL) += http.o httpauth.o OBJS-$(CONFIG_PIPE_PROTOCOL) += file.o -OBJS-$(CONFIG_RTMP_PROTOCOL) += rtmpproto.o rtmppkt.o + +# external or internal rtmp +RTMP-OBJS-$(CONFIG_LIBRTMP) = librtmp.o +RTMP-OBJS-$(!CONFIG_LIBRTMP) = rtmpproto.o rtmppkt.o +OBJS-$(CONFIG_RTMP_PROTOCOL) += $(RTMP-OBJS-yes) + OBJS-$(CONFIG_RTP_PROTOCOL) += rtpproto.o OBJS-$(CONFIG_TCP_PROTOCOL) += tcp.o OBJS-$(CONFIG_UDP_PROTOCOL) += udp.o
