diff options
author | Martin Storsjö <martin@martin.st> | 2010-06-05 19:49:55 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-06-05 19:49:55 +0000 |
commit | fc490fcf71949a3222613f383303a8d969c71da9 (patch) | |
tree | d990831f2b131ccf7850dbe8c5a600699b1841cd /libavformat/rtsp.h | |
parent | d0382374b77ad7bb274fc5d81eeef3c922d9821a (diff) | |
download | ffmpeg-fc490fcf71949a3222613f383303a8d969c71da9.tar.gz |
Cosmetics: Reindent/align/wrap
Originally committed as revision 23498 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r-- | libavformat/rtsp.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h index 5e990ea001..a28bb94bb2 100644 --- a/libavformat/rtsp.h +++ b/libavformat/rtsp.h @@ -349,17 +349,17 @@ extern int rtsp_rtp_port_max; * @return zero if success, nonzero otherwise */ int ff_rtsp_send_cmd_with_content_async(AVFormatContext *s, - const char *method, const char *url, - const char *headers, - const unsigned char *send_content, - int send_content_length); + const char *method, const char *url, + const char *headers, + const unsigned char *send_content, + int send_content_length); /** * Send a command to the RTSP server without waiting for the reply. * * @see rtsp_send_cmd_with_content_async */ int ff_rtsp_send_cmd_async(AVFormatContext *s, const char *method, - const char *url, const char *headers); + const char *url, const char *headers); /** * Send a command to the RTSP server and wait for the reply. @@ -378,12 +378,12 @@ int ff_rtsp_send_cmd_async(AVFormatContext *s, const char *method, * @return zero if success, nonzero otherwise */ int ff_rtsp_send_cmd_with_content(AVFormatContext *s, - const char *method, const char *url, - const char *headers, - RTSPMessageHeader *reply, - unsigned char **content_ptr, - const unsigned char *send_content, - int send_content_length); + const char *method, const char *url, + const char *headers, + RTSPMessageHeader *reply, + unsigned char **content_ptr, + const unsigned char *send_content, + int send_content_length); /** * Send a command to the RTSP server and wait for the reply. @@ -391,8 +391,8 @@ int ff_rtsp_send_cmd_with_content(AVFormatContext *s, * @see rtsp_send_cmd_with_content */ int ff_rtsp_send_cmd(AVFormatContext *s, const char *method, - const char *url, const char *headers, - RTSPMessageHeader *reply, unsigned char **content_ptr); + const char *url, const char *headers, + RTSPMessageHeader *reply, unsigned char **content_ptr); /** * Read a RTSP message from the server, or prepare to read data |