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
32f808e2
Commit
32f808e2
authored
Jul 10, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* all: sout_ParseCfg -> sout_CfgParse.
parent
9ea870aa
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
modules/access_output/file.c
modules/access_output/file.c
+1
-1
modules/access_output/http.c
modules/access_output/http.c
+1
-1
modules/access_output/udp.c
modules/access_output/udp.c
+1
-1
No files found.
modules/access_output/file.c
View file @
32f808e2
...
@@ -99,7 +99,7 @@ static int Open( vlc_object_t *p_this )
...
@@ -99,7 +99,7 @@ static int Open( vlc_object_t *p_this )
int
i_flags
;
int
i_flags
;
vlc_value_t
val
;
vlc_value_t
val
;
sout_
ParseCfg
(
p_access
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_access
->
p_cfg
);
sout_
CfgParse
(
p_access
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_access
->
p_cfg
);
if
(
!
(
p_access
->
p_sys
=
malloc
(
sizeof
(
sout_access_out_sys_t
)
)
)
)
if
(
!
(
p_access
->
p_sys
=
malloc
(
sizeof
(
sout_access_out_sys_t
)
)
)
)
{
{
...
...
modules/access_output/http.c
View file @
32f808e2
...
@@ -114,7 +114,7 @@ static int Open( vlc_object_t *p_this )
...
@@ -114,7 +114,7 @@ static int Open( vlc_object_t *p_this )
return
(
VLC_EGENERIC
);
return
(
VLC_EGENERIC
);
}
}
sout_
ParseCfg
(
p_access
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_access
->
p_cfg
);
sout_
CfgParse
(
p_access
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_access
->
p_cfg
);
/* p_access->psz_name host.name:port/filename */
/* p_access->psz_name host.name:port/filename */
psz_name
=
psz_parser
=
strdup
(
p_access
->
psz_name
);
psz_name
=
psz_parser
=
strdup
(
p_access
->
psz_name
);
...
...
modules/access_output/udp.c
View file @
32f808e2
...
@@ -174,7 +174,7 @@ static int Open( vlc_object_t *p_this )
...
@@ -174,7 +174,7 @@ static int Open( vlc_object_t *p_this )
vlc_value_t
val
;
vlc_value_t
val
;
sout_
ParseCfg
(
p_access
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_access
->
p_cfg
);
sout_
CfgParse
(
p_access
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_access
->
p_cfg
);
if
(
!
(
p_sys
=
p_access
->
p_sys
=
if
(
!
(
p_sys
=
p_access
->
p_sys
=
malloc
(
sizeof
(
sout_access_out_sys_t
)
)
)
)
malloc
(
sizeof
(
sout_access_out_sys_t
)
)
)
)
...
...
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