[SCM] libav/experimental: drop rtp_get_file_handles() which is not part of public API and not used anymore

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 17:18:02 UTC 2013


The following commit has been merged in the experimental branch:
commit a178edf298d46abd87611fe1938810262c3c8252
Author: Aurelien Jacobs <aurel at gnuage.org>
Date:   Sat Oct 23 16:21:49 2010 +0000

    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

diff --git a/libavformat/avio.h b/libavformat/avio.h
index e4fd601..cccf21d 100644
--- a/libavformat/avio.h
+++ b/libavformat/avio.h
@@ -182,7 +182,6 @@ int64_t url_filesize(URLContext *h);
 /**
  * Return the file descriptor associated with this URL. For RTP, this
  * will return only the RTP file descriptor, not the RTCP file descriptor.
- * To get both, use rtp_get_file_handles().
  *
  * @return the file descriptor associated with this URL, or <0 on error.
  */
diff --git a/libavformat/rtpdec.h b/libavformat/rtpdec.h
index 0ce98e9..41c18c1 100644
--- a/libavformat/rtpdec.h
+++ b/libavformat/rtpdec.h
@@ -49,9 +49,6 @@ int rtp_get_local_rtp_port(URLContext *h);
 int rtp_get_local_rtcp_port(URLContext *h);
 
 int rtp_set_remote_url(URLContext *h, const char *uri);
-#if (LIBAVFORMAT_VERSION_MAJOR <= 52)
-void rtp_get_file_handles(URLContext *h, int *prtp_fd, int *prtcp_fd);
-#endif
 
 /**
  * Send a dummy packet on both port pairs to set up the connection
diff --git a/libavformat/rtpproto.c b/libavformat/rtpproto.c
index b2a9bb6..70ed84c 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;

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list