summaryrefslogtreecommitdiff
path: root/avserver.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2011-10-12 12:37:42 +0300
committerMartin Storsjö <martin@martin.st>2011-10-12 14:48:12 +0300
commitbfc6db4477cd1ca6c32ab533783238cf8381f177 (patch)
treeb25189b757037eac91d52eb717d179318e179cb1 /avserver.c
parent318efbfc10a5fcf7daec40d2c3e84dda0f6ad3bc (diff)
rtpdec: Add ff_ prefix to all nonstatic symbols
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'avserver.c')
-rw-r--r--avserver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/avserver.c b/avserver.c
index 7b8bf1397a..ff7a15c105 100644
--- a/avserver.c
+++ b/avserver.c
@@ -3169,8 +3169,8 @@ static void rtsp_cmd_setup(HTTPContext *c, const char *url,
switch(rtp_c->rtp_protocol) {
case RTSP_LOWER_TRANSPORT_UDP:
- rtp_port = rtp_get_local_rtp_port(rtp_c->rtp_handles[stream_index]);
- rtcp_port = rtp_get_local_rtcp_port(rtp_c->rtp_handles[stream_index]);
+ rtp_port = ff_rtp_get_local_rtp_port(rtp_c->rtp_handles[stream_index]);
+ rtcp_port = ff_rtp_get_local_rtcp_port(rtp_c->rtp_handles[stream_index]);
avio_printf(c->pb, "Transport: RTP/AVP/UDP;unicast;"
"client_port=%d-%d;server_port=%d-%d",
th->client_port_min, th->client_port_max,