diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2010-02-23 00:35:50 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2010-02-23 00:35:50 +0000 |
commit | 3307e6ea86b02ab6f4c75c96ff4c132283ebfaa9 (patch) | |
tree | 0d9a37a8981a4c1f3c55b83bfa5fe31378bd5c50 /libavformat/rtpdec_amr.c | |
parent | fc5607f86209b0a0ddec1b0a3816f7977e15f516 (diff) | |
download | ffmpeg-3307e6ea86b02ab6f4c75c96ff4c132283ebfaa9.tar.gz |
Prefix non-static RTSP functions with ff_.
Originally committed as revision 21974 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtpdec_amr.c')
-rw-r--r-- | libavformat/rtpdec_amr.c | 2 |
1 files changed, 1 insertions, 1 deletions
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")) |