Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
256df85c
Commit
256df85c
authored
Sep 04, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix minor cast mistmatches
parent
8917f566
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
modules/misc/rtsp.c
modules/misc/rtsp.c
+4
-4
modules/services_discovery/sap.c
modules/services_discovery/sap.c
+1
-1
No files found.
modules/misc/rtsp.c
View file @
256df85c
...
...
@@ -221,9 +221,9 @@ static rtsp_client_t *RtspClientGet( vod_media_t *, const char * );
static
void
RtspClientDel
(
vod_media_t
*
,
rtsp_client_t
*
);
static
int
RtspCallback
(
httpd_callback_sys_t
*
,
httpd_client_t
*
,
httpd_message_t
*
,
httpd_message_t
*
);
httpd_message_t
*
,
const
httpd_message_t
*
);
static
int
RtspCallbackES
(
httpd_callback_sys_t
*
,
httpd_client_t
*
,
httpd_message_t
*
,
httpd_message_t
*
);
httpd_message_t
*
,
const
httpd_message_t
*
);
static
char
*
SDPGenerate
(
const
vod_media_t
*
,
httpd_client_t
*
cl
);
...
...
@@ -896,7 +896,7 @@ static void RtspClientDel( vod_media_t *p_media, rtsp_client_t *p_rtsp )
}
static
int
RtspCallback
(
httpd_callback_sys_t
*
p_args
,
httpd_client_t
*
cl
,
httpd_message_t
*
answer
,
httpd_message_t
*
query
)
httpd_message_t
*
answer
,
const
httpd_message_t
*
query
)
{
vod_media_t
*
p_media
=
(
vod_media_t
*
)
p_args
;
vod_t
*
p_vod
=
p_media
->
p_vod
;
...
...
@@ -1228,7 +1228,7 @@ static int RtspCallback( httpd_callback_sys_t *p_args, httpd_client_t *cl,
}
static
int
RtspCallbackES
(
httpd_callback_sys_t
*
p_args
,
httpd_client_t
*
cl
,
httpd_message_t
*
answer
,
httpd_message_t
*
query
)
httpd_message_t
*
answer
,
const
httpd_message_t
*
query
)
{
media_es_t
*
p_es
=
(
media_es_t
*
)
p_args
;
vod_media_t
*
p_media
=
p_es
->
p_media
;
...
...
modules/services_discovery/sap.c
View file @
256df85c
...
...
@@ -317,7 +317,7 @@ static int Open( vlc_object_t *p_this )
static
int
OpenDemux
(
vlc_object_t
*
p_this
)
{
demux_t
*
p_demux
=
(
demux_t
*
)
p_this
;
uint8_t
*
p_peek
;
const
uint8_t
*
p_peek
;
char
*
psz_sdp
=
NULL
;
sdp_t
*
p_sdp
=
NULL
;
int
errval
=
VLC_EGENERIC
;
...
...
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