Cosmetics: reindent

Originally committed as revision 21969 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Martin Storsjö 2010-02-22 19:47:22 +00:00
parent 15ba23150e
commit af037f8098
1 changed files with 12 additions and 12 deletions

View File

@ -880,8 +880,8 @@ static void rtsp_skip_packet(AVFormatContext *s)
}
int 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;
@ -967,9 +967,9 @@ int rtsp_read_reply(AVFormatContext *s, RTSPMessageHeader *reply,
}
void 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];
@ -1004,8 +1004,8 @@ void rtsp_send_cmd_async(AVFormatContext *s, const char *cmd)
}
void rtsp_send_cmd(AVFormatContext *s,
const char *cmd, RTSPMessageHeader *reply,
unsigned char **content_ptr)
const char *cmd, RTSPMessageHeader *reply,
unsigned char **content_ptr)
{
rtsp_send_cmd_async(s, cmd);
@ -1013,11 +1013,11 @@ void rtsp_send_cmd(AVFormatContext *s,
}
void rtsp_send_cmd_with_content(AVFormatContext *s,
const char *cmd,
RTSPMessageHeader *reply,
unsigned char **content_ptr,
const unsigned char *send_content,
int send_content_length)
const char *cmd,
RTSPMessageHeader *reply,
unsigned char **content_ptr,
const unsigned char *send_content,
int send_content_length)
{
rtsp_send_cmd_with_content_async(s, cmd, send_content, send_content_length);