Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: source/patched-ffmpeg-mt/libavformat/rtpproto.c

Issue 4533003: patched ffmpeg nov 2 (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/ffmpeg/
Patch Set: '' Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: source/patched-ffmpeg-mt/libavformat/rtpproto.c
===================================================================
--- source/patched-ffmpeg-mt/libavformat/rtpproto.c (revision 65184)
+++ source/patched-ffmpeg-mt/libavformat/rtpproto.c (working copy)
@@ -328,18 +328,6 @@
}
/**
- * Return the local rtp port used by the RTP connection
- * @param h media file context
- * @return the local port number
- */
-
-int rtp_get_local_port(URLContext *h)
-{
- RTPContext *s = h->priv_data;
- return udp_get_local_port(s->rtp_hd);
-}
-
-/**
* Return the local rtcp port used by the RTP connection
* @param h media file context
* @return the local port number
@@ -351,22 +339,6 @@
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;

Powered by Google App Engine
This is Rietveld 408576698