summaryrefslogtreecommitdiff
path: root/libavformat/rtsp.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2010-02-23 11:05:36 +0000
committerMartin Storsjö <martin@martin.st>2010-02-23 11:05:36 +0000
commit939939333359432596858ce7bcc031003d7e18be (patch)
tree2506bc94db5ba404e64a3b1e25ffac40a000d02f /libavformat/rtsp.c
parentb62c65f23e63168c3008dd2aa1c96326bf0e47a0 (diff)
Cosmetics: reindent
Originally committed as revision 21995 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.c')
-rw-r--r--libavformat/rtsp.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c
index a8231bb7fa..6a3f38b419 100644
--- a/libavformat/rtsp.c
+++ b/libavformat/rtsp.c
@@ -251,7 +251,7 @@ static const AttrNameMap attr_names[]=
* is broken out as a function because it is used in rtp_h264.c, which is
* forthcoming. */
int ff_rtsp_next_attr_and_value(const char **p, char *attr, int attr_size,
- char *value, int value_size)
+ char *value, int value_size)
{
skip_spaces(p);
if (**p) {
@@ -280,7 +280,7 @@ static void sdp_parse_fmtp(AVStream *st, const char *p)
/* loop on each attribute */
while (ff_rtsp_next_attr_and_value(&p, attr, sizeof(attr),
- value, sizeof(value))) {
+ value, sizeof(value))) {
/* grab the codec extra_data from the config parameter of the fmtp
* line */
sdp_parse_fmtp_config(codec, rtsp_st->dynamic_protocol_context,
@@ -882,8 +882,8 @@ static void rtsp_skip_packet(AVFormatContext *s)
}
int ff_rtsp_read_reply(AVFormatContext *s, RTSPMessageHeader *reply,
- unsigned char **content_ptr,
- int return_on_interleaved_data)
+ unsigned char **content_ptr,
+ int return_on_interleaved_data)
{
RTSPState *rt = s->priv_data;
char buf[4096], buf1[1024], *q;
@@ -969,9 +969,9 @@ int ff_rtsp_read_reply(AVFormatContext *s, RTSPMessageHeader *reply,
}
void ff_rtsp_send_cmd_with_content_async(AVFormatContext *s,
- const char *cmd,
- const unsigned char *send_content,
- int send_content_length)
+ const char *cmd,
+ const unsigned char *send_content,
+ int send_content_length)
{
RTSPState *rt = s->priv_data;
char buf[4096], buf1[1024];
@@ -1006,8 +1006,8 @@ void ff_rtsp_send_cmd_async(AVFormatContext *s, const char *cmd)
}
void ff_rtsp_send_cmd(AVFormatContext *s,
- const char *cmd, RTSPMessageHeader *reply,
- unsigned char **content_ptr)
+ const char *cmd, RTSPMessageHeader *reply,
+ unsigned char **content_ptr)
{
ff_rtsp_send_cmd_async(s, cmd);