1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-08 13:22:53 +02:00

rtp: remove ff_rtp_get_rtcp_file_handle().

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Jordi Ortiz 2012-08-17 18:41:26 +02:00 committed by Martin Storsjö
parent e7993ece9b
commit a2dd4f7780
2 changed files with 0 additions and 10 deletions

View File

@ -71,11 +71,6 @@ void ff_rtp_send_punch_packets(URLContext* rtp_handle);
*/ */
int ff_rtp_check_and_send_back_rr(RTPDemuxContext *s, int count); int ff_rtp_check_and_send_back_rr(RTPDemuxContext *s, int count);
/**
* Get the file handle for the RTCP socket.
*/
int ff_rtp_get_rtcp_file_handle(URLContext *h);
// these statistics are used for rtcp receiver reports... // these statistics are used for rtcp receiver reports...
typedef struct { typedef struct {
uint16_t max_seq; ///< highest sequence number seen uint16_t max_seq; ///< highest sequence number seen

View File

@ -315,11 +315,6 @@ static int rtp_get_file_handle(URLContext *h)
return s->rtp_fd; return s->rtp_fd;
} }
int ff_rtp_get_rtcp_file_handle(URLContext *h) {
RTPContext *s = h->priv_data;
return s->rtcp_fd;
}
static int rtp_get_multi_file_handle(URLContext *h, int **handles, static int rtp_get_multi_file_handle(URLContext *h, int **handles,
int *numhandles) int *numhandles)
{ {