Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
5a980d53
Commit
5a980d53
authored
Aug 20, 2009
by
Pierre
Browse files
rtsp: Flag unused parameters.
parent
9243562c
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/access/rtsp/access.c
View file @
5a980d53
...
...
@@ -136,6 +136,7 @@ static int RtspReadLine( void *p_userdata, uint8_t *p_buffer, int i_buffer )
static
int
RtspWrite
(
void
*
p_userdata
,
uint8_t
*
p_buffer
,
int
i_buffer
)
{
VLC_UNUSED
(
i_buffer
);
access_t
*
p_access
=
(
access_t
*
)
p_userdata
;
access_sys_t
*
p_sys
=
p_access
->
p_sys
;
...
...
@@ -308,6 +309,8 @@ static block_t *BlockRead( access_t *p_access )
*****************************************************************************/
static
int
Seek
(
access_t
*
p_access
,
int64_t
i_pos
)
{
VLC_UNUSED
(
p_access
);
VLC_UNUSED
(
i_pos
);
return
VLC_SUCCESS
;
}
...
...
modules/access/rtsp/rtsp.c
View file @
5a980d53
...
...
@@ -128,6 +128,7 @@ static int rtsp_put( rtsp_client_t *rtsp, const char *psz_string )
static
int
rtsp_get_status_code
(
rtsp_client_t
*
rtsp
,
const
char
*
psz_string
)
{
VLC_UNUSED
(
rtsp
);
char
psz_buffer
[
4
];
int
i_code
=
0
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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