Commit 5a980d53 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

rtsp: Flag unused parameters.

parent 9243562c
......@@ -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;
}
......
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment