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
a3da7219
Commit
a3da7219
authored
Jul 10, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
all: sout_ParseCfg -> sout_CfgParse.
parent
5363e037
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
modules/codec/ffmpeg/encoder.c
modules/codec/ffmpeg/encoder.c
+1
-1
modules/codec/vorbis.c
modules/codec/vorbis.c
+1
-1
modules/codec/x264.c
modules/codec/x264.c
+1
-1
No files found.
modules/codec/ffmpeg/encoder.c
View file @
a3da7219
...
...
@@ -233,7 +233,7 @@ int E_(OpenEncoder)( vlc_object_t *p_this )
p_context
->
dsp_mask
|=
FF_MM_SSE2
;
}
sout_
ParseCfg
(
p_enc
,
ENC_CFG_PREFIX
,
ppsz_enc_options
,
p_enc
->
p_cfg
);
sout_
CfgParse
(
p_enc
,
ENC_CFG_PREFIX
,
ppsz_enc_options
,
p_enc
->
p_cfg
);
var_Get
(
p_enc
,
ENC_CFG_PREFIX
"keyint"
,
&
val
);
p_sys
->
i_key_int
=
val
.
i_int
;
...
...
modules/codec/vorbis.c
View file @
a3da7219
...
...
@@ -608,7 +608,7 @@ static int OpenEncoder( vlc_object_t *p_this )
p_enc
->
fmt_in
.
i_codec
=
VLC_FOURCC
(
'f'
,
'l'
,
'3'
,
'2'
);
p_enc
->
fmt_out
.
i_codec
=
VLC_FOURCC
(
'v'
,
'o'
,
'r'
,
'b'
);
sout_
ParseCfg
(
p_enc
,
ENC_CFG_PREFIX
,
ppsz_enc_options
,
p_enc
->
p_cfg
);
sout_
CfgParse
(
p_enc
,
ENC_CFG_PREFIX
,
ppsz_enc_options
,
p_enc
->
p_cfg
);
var_Get
(
p_enc
,
ENC_CFG_PREFIX
"quality"
,
&
val
);
i_quality
=
val
.
i_int
;
...
...
modules/codec/x264.c
View file @
a3da7219
...
...
@@ -100,7 +100,7 @@ static int Open ( vlc_object_t *p_this )
return
VLC_EGENERIC
;
}
sout_
ParseCfg
(
p_enc
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_enc
->
p_cfg
);
sout_
CfgParse
(
p_enc
,
SOUT_CFG_PREFIX
,
ppsz_sout_options
,
p_enc
->
p_cfg
);
p_enc
->
fmt_out
.
i_codec
=
VLC_FOURCC
(
'h'
,
'2'
,
'6'
,
'4'
);
p_enc
->
fmt_in
.
i_codec
=
VLC_FOURCC
(
'I'
,
'4'
,
'2'
,
'0'
);
...
...
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