summaryrefslogtreecommitdiff
path: root/libavformat/rtpproto.c
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2010-10-23 16:21:49 +0000
committerAurelien Jacobs <aurel@gnuage.org>2010-10-23 16:21:49 +0000
commita178edf298d46abd87611fe1938810262c3c8252 (patch)
tree298ccb69c157627646403e42d09e3206cfeffb75 /libavformat/rtpproto.c
parentfb660f4015bd1055ceb921ab442686b413544127 (diff)
drop rtp_get_file_handles() which is not part of public API and not used anymore
Originally committed as revision 25556 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtpproto.c')
-rw-r--r--libavformat/rtpproto.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/libavformat/rtpproto.c b/libavformat/rtpproto.c
index b2a9bb641c..70ed84cec3 100644
--- a/libavformat/rtpproto.c
+++ b/libavformat/rtpproto.c
@@ -339,22 +339,6 @@ int rtp_get_local_rtcp_port(URLContext *h)
return udp_get_local_port(s->rtcp_hd);
}
-#if (LIBAVFORMAT_VERSION_MAJOR <= 52)
-/**
- * Return the rtp and rtcp file handles for select() usage to wait for
- * several RTP streams at the same time.
- * @param h media file context
- */
-
-void rtp_get_file_handles(URLContext *h, int *prtp_fd, int *prtcp_fd)
-{
- RTPContext *s = h->priv_data;
-
- *prtp_fd = s->rtp_fd;
- *prtcp_fd = s->rtcp_fd;
-}
-#endif
-
static int rtp_get_file_handle(URLContext *h)
{
RTPContext *s = h->priv_data;