]> git.sesse.net Git - ffmpeg/commitdiff
Don't install rtsp.h. It is intended to be private, it depends on rtp code
authorRonald S. Bultje <rsbultje@gmail.com>
Mon, 16 Feb 2009 16:24:01 +0000 (16:24 +0000)
committerRonald S. Bultje <rsbultje@gmail.com>
Mon, 16 Feb 2009 16:24:01 +0000 (16:24 +0000)
which isn't installed anyway (so it doesn't work).

In the process, also remove public/private API comments from rtsp headers
because they are unnecessary.

Originally committed as revision 17379 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/Makefile
libavformat/rtsp.h

index e79860c937f2f47ec88e2832fe1c80417595219f..110a047bbe047ae31f4e9374435c551811c15811 100644 (file)
@@ -3,7 +3,7 @@ include $(SUBDIR)../config.mak
 NAME = avformat
 FFLIBS = avcodec avutil
 
-HEADERS = avformat.h avio.h rtsp.h rtspcodes.h
+HEADERS = avformat.h avio.h
 
 OBJS = allformats.o cutils.o metadata.o metadata_compat.o options.o os_support.o sdp.o utils.o
 
index ca1e53f26bf00406b516b51f88137ea8670c934f..6920b451f979796105550be949162cebb5660949 100644 (file)
@@ -31,9 +31,6 @@ enum RTSPLowerTransport {
     RTSP_LOWER_TRANSPORT_UDP = 0,
     RTSP_LOWER_TRANSPORT_TCP = 1,
     RTSP_LOWER_TRANSPORT_UDP_MULTICAST = 2,
-    /**
-     * This is not part of public API and shouldn't be used outside of ffmpeg.
-     */
     RTSP_LOWER_TRANSPORT_LAST
 };