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
43a8115c
Commit
43a8115c
authored
Jul 10, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* all: cosmetics.
parent
179f1381
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
17 additions
and
17 deletions
+17
-17
modules/stream_out/display.c
modules/stream_out/display.c
+1
-1
modules/stream_out/duplicate.c
modules/stream_out/duplicate.c
+2
-2
modules/stream_out/es.c
modules/stream_out/es.c
+1
-1
modules/stream_out/gather.c
modules/stream_out/gather.c
+2
-2
modules/stream_out/rtp.c
modules/stream_out/rtp.c
+1
-1
modules/stream_out/standard.c
modules/stream_out/standard.c
+1
-1
modules/stream_out/transcode.c
modules/stream_out/transcode.c
+7
-7
modules/stream_out/transrate/transrate.c
modules/stream_out/transrate/transrate.c
+2
-2
No files found.
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_
ParseCfg
(
p_stream
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
sout_
CfgParse
(
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_
stream_n
ew
(
p_stream
->
p_sout
,
p_cfg
->
psz_value
);
s
=
sout_
StreamN
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_
stream_d
elete
(
p_sys
->
pp_streams
[
i
]
);
sout_
StreamD
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_
ParseCfg
(
p_stream
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_stream
->
p_cfg
);
sout_
CfgParse
(
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_
stream_n
ew
(
p_stream
->
p_sout
,
p_stream
->
psz_next
);
p_sys
->
p_out
=
sout_
StreamN
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_
stream_d
elete
(
p_sys
->
p_out
);
sout_
StreamD
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_
ParseCfg
(
p_stream
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_stream
->
p_cfg
);
sout_
CfgParse
(
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_
ParseCfg
(
p_stream
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
sout_
CfgParse
(
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_
stream_n
ew
(
p_stream
->
p_sout
,
p_stream
->
psz_next
);
p_sys
->
p_out
=
sout_
StreamN
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_
ParseCfg
(
p_stream
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
sout_
CfgParse
(
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_
cfg_parser
(
&
p_sys
->
psz_aenc
,
&
p_sys
->
p_audio_cfg
,
val
.
psz_string
);
psz_next
=
sout_
CfgCreate
(
&
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_
cfg_parser
(
&
p_sys
->
psz_venc
,
&
p_sys
->
p_video_cfg
,
val
.
psz_string
);
psz_next
=
sout_
CfgCreate
(
&
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_
stream_d
elete
(
p_sys
->
p_out
);
sout_
StreamD
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_
stream_n
ew
(
p_stream
->
p_sout
,
p_stream
->
psz_next
);
p_sys
->
p_out
=
sout_
StreamN
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_
stream_d
elete
(
p_sys
->
p_out
);
sout_
StreamD
elete
(
p_sys
->
p_out
);
free
(
p_sys
);
}
...
...
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