summaryrefslogtreecommitdiff
path: root/libavformat/rtpproto.c
diff options
context:
space:
mode:
authorJosh Allmann <joshua.allmann@gmail.com>2010-08-25 17:32:59 +0000
committerMartin Storsjö <martin@martin.st>2010-08-25 17:32:59 +0000
commit186f1ec5f442bd9c6ccefa1af0a2b2d1e0f8a057 (patch)
tree9245093b9b7a013a5e1b7dbf5cb8d9b312018062 /libavformat/rtpproto.c
parent4574b815cca8f0d05b4ac1df0bd04d8613006663 (diff)
Add rtp_get_rtcp_file_handle function
Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 24929 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtpproto.c')
-rw-r--r--libavformat/rtpproto.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/rtpproto.c b/libavformat/rtpproto.c
index 289a253f9e..ef4602dfeb 100644
--- a/libavformat/rtpproto.c
+++ b/libavformat/rtpproto.c
@@ -373,6 +373,11 @@ static int rtp_get_file_handle(URLContext *h)
return s->rtp_fd;
}
+int rtp_get_rtcp_file_handle(URLContext *h) {
+ RTPContext *s = h->priv_data;
+ return s->rtcp_fd;
+}
+
URLProtocol rtp_protocol = {
"rtp",
rtp_open,