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
f9cebacf
Commit
f9cebacf
authored
Apr 26, 2005
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* all: warning fixes.
* mpjpeg.c: use sout_CfgParse !
parent
21a37621
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
5 deletions
+7
-5
modules/access/directory.c
modules/access/directory.c
+2
-2
modules/audio_filter/resampler/linear.c
modules/audio_filter/resampler/linear.c
+1
-1
modules/audio_filter/resampler/ugly.c
modules/audio_filter/resampler/ugly.c
+1
-1
modules/control/http.c
modules/control/http.c
+1
-0
modules/mux/mpjpeg.c
modules/mux/mpjpeg.c
+2
-1
No files found.
modules/access/directory.c
View file @
f9cebacf
...
@@ -553,8 +553,8 @@ static int ReadDir( playlist_t *p_playlist,
...
@@ -553,8 +553,8 @@ static int ReadDir( playlist_t *p_playlist,
}
}
#endif
/* HAVE_STRSEP */
#endif
/* HAVE_STRSEP */
p_item
=
playlist_ItemNewWithType
(
p_playlist
,
psz_uri
,
p_item
=
playlist_ItemNewWithType
(
VLC_OBJECT
(
p_playlist
)
,
p_dir_content
->
d_name
,
ITEM_TYPE_VFILE
);
psz_uri
,
p_dir_content
->
d_name
,
ITEM_TYPE_VFILE
);
playlist_NodeAddItem
(
p_playlist
,
p_item
,
playlist_NodeAddItem
(
p_playlist
,
p_item
,
p_parent
->
pp_parents
[
0
]
->
i_view
,
p_parent
->
pp_parents
[
0
]
->
i_view
,
p_parent
,
p_parent
,
...
...
modules/audio_filter/resampler/linear.c
View file @
f9cebacf
...
@@ -137,7 +137,7 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
...
@@ -137,7 +137,7 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
aout_buffer_t
*
p_in_buf
,
aout_buffer_t
*
p_out_buf
)
aout_buffer_t
*
p_in_buf
,
aout_buffer_t
*
p_out_buf
)
{
{
filter_sys_t
*
p_sys
=
(
filter_sys_t
*
)
p_filter
->
p_sys
;
filter_sys_t
*
p_sys
=
(
filter_sys_t
*
)
p_filter
->
p_sys
;
float
*
p_in
_orig
,
*
p_in
,
*
p_out
=
(
float
*
)
p_out_buf
->
p_buffer
;
float
*
p_in
,
*
p_out
=
(
float
*
)
p_out_buf
->
p_buffer
;
float
*
p_prev_sample
=
(
float
*
)
p_sys
->
p_prev_sample
;
float
*
p_prev_sample
=
(
float
*
)
p_sys
->
p_prev_sample
;
int
i_nb_channels
=
aout_FormatNbChannels
(
&
p_filter
->
input
);
int
i_nb_channels
=
aout_FormatNbChannels
(
&
p_filter
->
input
);
...
...
modules/audio_filter/resampler/ugly.c
View file @
f9cebacf
...
@@ -84,7 +84,7 @@ static int Create( vlc_object_t *p_this )
...
@@ -84,7 +84,7 @@ static int Create( vlc_object_t *p_this )
static
void
DoWork
(
aout_instance_t
*
p_aout
,
aout_filter_t
*
p_filter
,
static
void
DoWork
(
aout_instance_t
*
p_aout
,
aout_filter_t
*
p_filter
,
aout_buffer_t
*
p_in_buf
,
aout_buffer_t
*
p_out_buf
)
aout_buffer_t
*
p_in_buf
,
aout_buffer_t
*
p_out_buf
)
{
{
int32_t
*
p_in
_orig
,
*
p_in
,
*
p_out
=
(
int32_t
*
)
p_out_buf
->
p_buffer
;
int32_t
*
p_in
,
*
p_out
=
(
int32_t
*
)
p_out_buf
->
p_buffer
;
unsigned
int
i_nb_channels
=
aout_FormatNbChannels
(
&
p_filter
->
input
);
unsigned
int
i_nb_channels
=
aout_FormatNbChannels
(
&
p_filter
->
input
);
unsigned
int
i_in_nb
=
p_in_buf
->
i_nb_samples
;
unsigned
int
i_in_nb
=
p_in_buf
->
i_nb_samples
;
...
...
modules/control/http.c
View file @
f9cebacf
...
@@ -40,6 +40,7 @@
...
@@ -40,6 +40,7 @@
#include "vlc_httpd.h"
#include "vlc_httpd.h"
#include "vlc_vlm.h"
#include "vlc_vlm.h"
#include "vlc_tls.h"
#include "vlc_tls.h"
#include "charset.h"
#ifdef HAVE_SYS_STAT_H
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
# include <sys/stat.h>
...
...
modules/mux/mpjpeg.c
View file @
f9cebacf
...
@@ -84,11 +84,12 @@ static int Open( vlc_object_t *p_this )
...
@@ -84,11 +84,12 @@ static int Open( vlc_object_t *p_this )
char
*
psz_separator_block
,
*
psz_separator
;
char
*
psz_separator_block
,
*
psz_separator
;
msg_Dbg
(
p_mux
,
"Multipart jpeg muxer opened"
);
msg_Dbg
(
p_mux
,
"Multipart jpeg muxer opened"
);
sout_CfgParse
(
p_mux
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_mux
->
p_cfg
);
p_sys
=
p_mux
->
p_sys
=
malloc
(
sizeof
(
sout_mux_sys_t
)
);
p_sys
=
p_mux
->
p_sys
=
malloc
(
sizeof
(
sout_mux_sys_t
)
);
p_sys
->
b_send_headers
=
VLC_TRUE
;
p_sys
->
b_send_headers
=
VLC_TRUE
;
psz_separator
=
var_
Create
GetString
(
p_mux
,
SOUT_CFG_PREFIX
"separator"
);
psz_separator
=
var_GetString
(
p_mux
,
SOUT_CFG_PREFIX
"separator"
);
i_size
=
strlen
(
psz_separator
)
+
2
+
2
+
2
+
strlen
(
CONTENT_TYPE
);
i_size
=
strlen
(
psz_separator
)
+
2
+
2
+
2
+
strlen
(
CONTENT_TYPE
);
psz_separator_block
=
(
char
*
)
malloc
(
i_size
);
psz_separator_block
=
(
char
*
)
malloc
(
i_size
);
sprintf
(
psz_separator_block
,
"
\r\n
%s
\r\n
%s
\r\n
"
,
psz_separator
,
sprintf
(
psz_separator_block
,
"
\r\n
%s
\r\n
%s
\r\n
"
,
psz_separator
,
...
...
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