From 3307e6ea86b02ab6f4c75c96ff4c132283ebfaa9 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Tue, 23 Feb 2010 00:35:50 +0000 Subject: Prefix non-static RTSP functions with ff_. Originally committed as revision 21974 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rtpdec_amr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/rtpdec_amr.c') diff --git a/libavformat/rtpdec_amr.c b/libavformat/rtpdec_amr.c index 3bb7913609..d9862c4160 100644 --- a/libavformat/rtpdec_amr.c +++ b/libavformat/rtpdec_amr.c @@ -141,7 +141,7 @@ static int amr_parse_sdp_line(AVFormatContext *s, int st_index, while (*p && *p != ' ') p++; /* eat protocol identifier */ while (*p && *p == ' ') p++; /* strip trailing spaces */ - while (rtsp_next_attr_and_value(&p, attr, sizeof(attr), value, sizeof(value))) { + while (ff_rtsp_next_attr_and_value(&p, attr, sizeof(attr), value, sizeof(value))) { if (!strcmp(attr, "octet-align")) octet_align = atoi(value); else if (!strcmp(attr, "crc")) -- cgit v1.2.1