Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
14984575
Commit
14984575
authored
Jul 05, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bunch of warnings
parent
1071c1bc
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13 additions
and
10 deletions
+13
-10
modules/access/dvb/en50221.c
modules/access/dvb/en50221.c
+2
-2
modules/access/rtmp/access.c
modules/access/rtmp/access.c
+2
-2
modules/access_output/dummy.c
modules/access_output/dummy.c
+5
-3
modules/control/http/util.c
modules/control/http/util.c
+1
-1
modules/misc/dummy/input.c
modules/misc/dummy/input.c
+1
-1
modules/stream_out/rtp.c
modules/stream_out/rtp.c
+1
-0
src/playlist/item.c
src/playlist/item.c
+1
-1
No files found.
modules/access/dvb/en50221.c
View file @
14984575
...
...
@@ -2320,8 +2320,8 @@ static inline void *FixUTF8( char *p )
static
char
*
dvbsi_to_utf8
(
char
*
psz_instring
,
size_t
i_length
)
{
const
char
*
psz_encoding
;
char
*
psz_
stringstart
,
*
psz_
outstring
,
*
psz_tmp
;
const
char
*
psz_encoding
,
*
psz_stringstart
;
char
*
psz_outstring
,
*
psz_tmp
;
char
psz_encbuf
[
12
];
size_t
i_in
,
i_out
;
vlc_iconv_t
iconv_handle
;
...
...
modules/access/rtmp/access.c
View file @
14984575
...
...
@@ -66,7 +66,7 @@ vlc_module_end();
/*****************************************************************************
* Local prototypes
*****************************************************************************/
static
int
Read
(
access_t
*
,
uint8_t
*
,
size_t
);
/*DOWN: last parameter int */
static
ssize_t
Read
(
access_t
*
,
uint8_t
*
,
size_t
);
static
int
Seek
(
access_t
*
,
int64_t
);
static
int
Control
(
access_t
*
,
int
,
va_list
);
...
...
@@ -299,7 +299,7 @@ static void Close( vlc_object_t * p_this )
/*****************************************************************************
* Read: standard read on a file descriptor.
*****************************************************************************/
static
in
t
Read
(
access_t
*
p_access
,
uint8_t
*
p_buffer
,
size_t
i_len
)
static
ssize_
t
Read
(
access_t
*
p_access
,
uint8_t
*
p_buffer
,
size_t
i_len
)
{
access_sys_t
*
p_sys
=
p_access
->
p_sys
;
rtmp_packet_t
*
rtmp_packet
;
...
...
modules/access_output/dummy.c
View file @
14984575
...
...
@@ -55,7 +55,7 @@ vlc_module_end();
/*****************************************************************************
* Exported prototypes
*****************************************************************************/
static
int
Write
(
sout_access_out_t
*
,
block_t
*
);
static
ssize_t
Write
(
sout_access_out_t
*
,
block_t
*
);
static
int
Seek
(
sout_access_out_t
*
,
off_t
);
/*****************************************************************************
...
...
@@ -85,9 +85,9 @@ static void Close( vlc_object_t * p_this )
/*****************************************************************************
* Read: standard read on a file descriptor.
*****************************************************************************/
static
in
t
Write
(
sout_access_out_t
*
p_access
,
block_t
*
p_buffer
)
static
ssize_
t
Write
(
sout_access_out_t
*
p_access
,
block_t
*
p_buffer
)
{
int64
_t
i_write
=
0
;
size
_t
i_write
=
0
;
block_t
*
b
=
p_buffer
;
while
(
b
)
...
...
@@ -99,6 +99,7 @@ static int Write( sout_access_out_t *p_access, block_t *p_buffer )
block_ChainRelease
(
p_buffer
);
(
void
)
p_access
;
return
i_write
;
}
...
...
@@ -107,6 +108,7 @@ static int Write( sout_access_out_t *p_access, block_t *p_buffer )
*****************************************************************************/
static
int
Seek
(
sout_access_out_t
*
p_access
,
off_t
i_pos
)
{
(
void
)
p_access
;
(
void
)
i_pos
;
return
0
;
}
...
...
modules/control/http/util.c
View file @
14984575
...
...
@@ -188,7 +188,7 @@ int ParseDirectory( intf_thread_t *p_intf, char *psz_root,
struct
stat
st
;
if
(
stat
(
dir
,
&
st
)
==
0
)
{
closedir
(
dir
);
closedir
(
p_
dir
);
return
VLC_EGENERIC
;
}
p_acl
=
NULL
;
...
...
modules/misc/dummy/input.c
View file @
14984575
...
...
@@ -39,7 +39,7 @@
/*****************************************************************************
* Access functions.
*****************************************************************************/
static
in
t
AccessRead
(
access_t
*
p_access
,
uint8_t
*
p
,
int
i_size
)
static
ssize_
t
AccessRead
(
access_t
*
p_access
,
uint8_t
*
p
,
int
i_size
)
{
VLC_UNUSED
(
p_access
);
memset
(
p
,
0
,
i_size
);
...
...
modules/stream_out/rtp.c
View file @
14984575
...
...
@@ -1311,6 +1311,7 @@ static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
block_t
*
p_next
;
assert
(
p_stream
->
p_sys
->
p_mux
==
NULL
);
(
void
)
p_stream
;
while
(
p_buffer
!=
NULL
)
{
...
...
src/playlist/item.c
View file @
14984575
...
...
@@ -750,7 +750,7 @@ void playlist_SendAddNotify( playlist_t *p_playlist, int i_item_id,
val
.
p_address
=
p_add
;
p_playlist
->
b_reset_currently_playing
=
true
;
if
(
b_signal
)
vlc_object_signal_maybe
(
p_playlist
);
vlc_object_signal_maybe
(
VLC_OBJECT
(
p_playlist
)
);
var_Set
(
p_playlist
,
"item-append"
,
val
);
free
(
p_add
);
}
...
...
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