Commit d97226ec authored by rbultje's avatar rbultje

Don't install rtsp.h. It is intended to be private, it depends on rtp code

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.



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17379 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent be3d8703
...@@ -3,7 +3,7 @@ include $(SUBDIR)../config.mak ...@@ -3,7 +3,7 @@ include $(SUBDIR)../config.mak
NAME = avformat NAME = avformat
FFLIBS = avcodec avutil 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 OBJS = allformats.o cutils.o metadata.o metadata_compat.o options.o os_support.o sdp.o utils.o
......
...@@ -31,9 +31,6 @@ enum RTSPLowerTransport { ...@@ -31,9 +31,6 @@ enum RTSPLowerTransport {
RTSP_LOWER_TRANSPORT_UDP = 0, RTSP_LOWER_TRANSPORT_UDP = 0,
RTSP_LOWER_TRANSPORT_TCP = 1, RTSP_LOWER_TRANSPORT_TCP = 1,
RTSP_LOWER_TRANSPORT_UDP_MULTICAST = 2, 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 RTSP_LOWER_TRANSPORT_LAST
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment