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.h | |
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.h')
-rw-r--r-- | libavformat/rtpdec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec.h b/libavformat/rtpdec.h index 1d38294955..6907a0c687 100644 --- a/libavformat/rtpdec.h +++ b/libavformat/rtpdec.h @@ -192,7 +192,7 @@ struct RTPDemuxContext { extern RTPDynamicProtocolHandler *RTPFirstDynamicPayloadHandler; void ff_register_dynamic_payload_handler(RTPDynamicProtocolHandler *handler); -int rtsp_next_attr_and_value(const char **p, char *attr, int attr_size, char *value, int value_size); ///< from rtsp.c, but used by rtp dynamic protocol handlers. +int ff_rtsp_next_attr_and_value(const char **p, char *attr, int attr_size, char *value, int value_size); ///< from rtsp.c, but used by rtp dynamic protocol handlers. void av_register_rtp_dynamic_payload_handlers(void); |