Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
cf935d56
Commit
cf935d56
authored
Feb 05, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use same type name in declaration and definition
parent
bb403e20
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
modules/access/ftp.c
modules/access/ftp.c
+2
-2
modules/access/mms/mmsh.c
modules/access/mms/mmsh.c
+1
-1
No files found.
modules/access/ftp.c
View file @
cf935d56
...
...
@@ -99,7 +99,7 @@ vlc_module_end();
static
ssize_t
Read
(
access_t
*
,
uint8_t
*
,
size_t
);
static
ssize_t
Write
(
sout_access_out_t
*
,
block_t
*
);
static
int
Seek
(
access_t
*
,
int64_t
);
static
int
OutSeek
(
sout_access_out_t
*
,
int64
_t
);
static
int
OutSeek
(
sout_access_out_t
*
,
off
_t
);
static
int
Control
(
access_t
*
,
int
,
va_list
);
struct
access_sys_t
...
...
@@ -668,7 +668,7 @@ static int ftp_ReadCommand( vlc_object_t *p_access, access_sys_t *p_sys,
}
static
int
ftp_StartStream
(
vlc_object_t
*
p_access
,
access_sys_t
*
p_sys
,
off
_t
i_start
)
int64
_t
i_start
)
{
char
psz_ipv4
[
16
],
*
psz_ip
=
p_sys
->
sz_epsv_ip
;
int
i_answer
;
...
...
modules/access/mms/mmsh.c
View file @
cf935d56
...
...
@@ -756,7 +756,7 @@ static void GetHeader( access_t *p_access )
/*****************************************************************************
* Start stream
****************************************************************************/
static
int
Start
(
access_t
*
p_access
,
off
_t
i_pos
)
static
int
Start
(
access_t
*
p_access
,
int64
_t
i_pos
)
{
access_sys_t
*
p_sys
=
p_access
->
p_sys
;
int
i_streams
=
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