Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
af037f80
Commit
af037f80
authored
Feb 22, 2010
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetics: reindent
Originally committed as revision 21969 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
15ba2315
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
rtsp.c
libavformat/rtsp.c
+12
-12
No files found.
libavformat/rtsp.c
View file @
af037f80
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment