Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
43a8115c
Commit
43a8115c
authored
Jul 10, 2004
by
Laurent Aimar
Browse files
* all: cosmetics.
parent
179f1381
Changes
8
Hide whitespace changes
Inline
Side-by-side
modules/stream_out/display.c
View file @
43a8115c
...
...
@@ -90,7 +90,7 @@ static int Open( vlc_object_t *p_this )
sout_stream_sys_t
*
p_sys
;
vlc_value_t
val
;
sout_Parse
Cfg
(
p_stream
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
sout_
Cfg
Parse
(
p_stream
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_stream
->
p_cfg
);
p_sys
=
malloc
(
sizeof
(
sout_stream_sys_t
)
);
...
...
modules/stream_out/duplicate.c
View file @
43a8115c
...
...
@@ -95,7 +95,7 @@ static int Open( vlc_object_t *p_this )
sout_stream_t
*
s
;
msg_Dbg
(
p_stream
,
" * adding `%s'"
,
p_cfg
->
psz_value
);
s
=
sout_
s
tream
_n
ew
(
p_stream
->
p_sout
,
p_cfg
->
psz_value
);
s
=
sout_
S
tream
N
ew
(
p_stream
->
p_sout
,
p_cfg
->
psz_value
);
if
(
s
)
{
...
...
@@ -144,7 +144,7 @@ static void Close( vlc_object_t * p_this )
msg_Dbg
(
p_stream
,
"closing a duplication"
);
for
(
i
=
0
;
i
<
p_sys
->
i_nb_streams
;
i
++
)
{
sout_
s
tream
_d
elete
(
p_sys
->
pp_streams
[
i
]
);
sout_
S
tream
D
elete
(
p_sys
->
pp_streams
[
i
]
);
if
(
p_sys
->
ppsz_select
[
i
]
)
{
free
(
p_sys
->
ppsz_select
[
i
]
);
...
...
modules/stream_out/es.c
View file @
43a8115c
...
...
@@ -147,7 +147,7 @@ static int Open( vlc_object_t *p_this )
sout_stream_sys_t
*
p_sys
;
vlc_value_t
val
;
sout_Parse
Cfg
(
p_stream
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_stream
->
p_cfg
);
sout_
Cfg
Parse
(
p_stream
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_stream
->
p_cfg
);
p_sys
=
malloc
(
sizeof
(
sout_stream_sys_t
)
);
p_sys
->
i_count
=
0
;
...
...
modules/stream_out/gather.c
View file @
43a8115c
...
...
@@ -76,7 +76,7 @@ static int Open( vlc_object_t *p_this )
sout_stream_sys_t
*
p_sys
;
p_stream
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
sout_stream_sys_t
)
);
p_sys
->
p_out
=
sout_
s
tream
_n
ew
(
p_stream
->
p_sout
,
p_stream
->
psz_next
);
p_sys
->
p_out
=
sout_
S
tream
N
ew
(
p_stream
->
p_sout
,
p_stream
->
psz_next
);
if
(
p_sys
->
p_out
==
NULL
)
{
free
(
p_sys
);
...
...
@@ -108,7 +108,7 @@ static void Close( vlc_object_t * p_this )
}
free
(
p_sys
->
id
);
sout_
s
tream
_d
elete
(
p_sys
->
p_out
);
sout_
S
tream
D
elete
(
p_sys
->
p_out
);
free
(
p_sys
);
}
...
...
modules/stream_out/rtp.c
View file @
43a8115c
...
...
@@ -227,7 +227,7 @@ static int Open( vlc_object_t *p_this )
sout_stream_sys_t
*
p_sys
;
vlc_value_t
val
;
sout_Parse
Cfg
(
p_stream
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_stream
->
p_cfg
);
sout_
Cfg
Parse
(
p_stream
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_stream
->
p_cfg
);
p_sys
=
malloc
(
sizeof
(
sout_stream_sys_t
)
);
...
...
modules/stream_out/standard.c
View file @
43a8115c
...
...
@@ -135,7 +135,7 @@ static int Open( vlc_object_t *p_this )
char
*
psz_mux_byext
=
NULL
;
sout_Parse
Cfg
(
p_stream
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
sout_
Cfg
Parse
(
p_stream
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_stream
->
p_cfg
);
var_Get
(
p_stream
,
SOUT_CFG_PREFIX
"access"
,
&
val
);
...
...
modules/stream_out/transcode.c
View file @
43a8115c
...
...
@@ -251,7 +251,7 @@ static int Open( vlc_object_t *p_this )
p_sys
=
vlc_object_create
(
p_this
,
sizeof
(
sout_stream_sys_t
)
);
p_sys
->
p_out
=
sout_
s
tream
_n
ew
(
p_stream
->
p_sout
,
p_stream
->
psz_next
);
p_sys
->
p_out
=
sout_
S
tream
N
ew
(
p_stream
->
p_sout
,
p_stream
->
psz_next
);
if
(
!
p_sys
->
p_out
)
{
msg_Err
(
p_stream
,
"cannot create chain"
);
...
...
@@ -262,7 +262,7 @@ static int Open( vlc_object_t *p_this )
p_sys
->
b_input_has_b_frames
=
VLC_FALSE
;
p_sys
->
i_output_pts
=
0
;
sout_Parse
Cfg
(
p_stream
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
sout_
Cfg
Parse
(
p_stream
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_stream
->
p_cfg
);
/* Audio transcoding parameters */
...
...
@@ -272,8 +272,8 @@ static int Open( vlc_object_t *p_this )
if
(
val
.
psz_string
&&
*
val
.
psz_string
)
{
char
*
psz_next
;
psz_next
=
sout_
c
fg
_parser
(
&
p_sys
->
psz_aenc
,
&
p_sys
->
p_audio_cfg
,
val
.
psz_string
);
psz_next
=
sout_
C
fg
Create
(
&
p_sys
->
psz_aenc
,
&
p_sys
->
p_audio_cfg
,
val
.
psz_string
);
if
(
psz_next
)
free
(
psz_next
);
}
if
(
val
.
psz_string
)
free
(
val
.
psz_string
);
...
...
@@ -312,8 +312,8 @@ static int Open( vlc_object_t *p_this )
if
(
val
.
psz_string
&&
*
val
.
psz_string
)
{
char
*
psz_next
;
psz_next
=
sout_
c
fg
_parser
(
&
p_sys
->
psz_venc
,
&
p_sys
->
p_video_cfg
,
val
.
psz_string
);
psz_next
=
sout_
C
fg
Create
(
&
p_sys
->
psz_venc
,
&
p_sys
->
p_video_cfg
,
val
.
psz_string
);
if
(
psz_next
)
free
(
psz_next
);
}
if
(
val
.
psz_string
)
free
(
val
.
psz_string
);
...
...
@@ -382,7 +382,7 @@ static void Close( vlc_object_t * p_this )
sout_stream_t
*
p_stream
=
(
sout_stream_t
*
)
p_this
;
sout_stream_sys_t
*
p_sys
=
p_stream
->
p_sys
;
sout_
s
tream
_d
elete
(
p_sys
->
p_out
);
sout_
S
tream
D
elete
(
p_sys
->
p_out
);
while
(
p_sys
->
p_audio_cfg
!=
NULL
)
{
...
...
modules/stream_out/transrate/transrate.c
View file @
43a8115c
...
...
@@ -80,7 +80,7 @@ static int Open( vlc_object_t *p_this )
char
*
val
;
p_sys
=
malloc
(
sizeof
(
sout_stream_sys_t
)
);
p_sys
->
p_out
=
sout_
s
tream
_n
ew
(
p_stream
->
p_sout
,
p_stream
->
psz_next
);
p_sys
->
p_out
=
sout_
S
tream
N
ew
(
p_stream
->
p_sout
,
p_stream
->
psz_next
);
p_sys
->
i_vbitrate
=
0
;
...
...
@@ -142,7 +142,7 @@ static void Close( vlc_object_t * p_this )
sout_stream_t
*
p_stream
=
(
sout_stream_t
*
)
p_this
;
sout_stream_sys_t
*
p_sys
=
p_stream
->
p_sys
;
sout_
s
tream
_d
elete
(
p_sys
->
p_out
);
sout_
S
tream
D
elete
(
p_sys
->
p_out
);
free
(
p_sys
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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