Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
5a980d53
Commit
5a980d53
authored
Aug 20, 2009
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtsp: Flag unused parameters.
parent
9243562c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
modules/access/rtsp/access.c
modules/access/rtsp/access.c
+3
-0
modules/access/rtsp/rtsp.c
modules/access/rtsp/rtsp.c
+1
-0
No files found.
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
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