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
3d752da0
Commit
3d752da0
authored
Apr 26, 2005
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/codec/x264.c: relaxed the version requirement for subpel and bpyramid.
parent
6dd481eb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/codec/x264.c
modules/codec/x264.c
+2
-2
No files found.
modules/codec/x264.c
View file @
3d752da0
...
...
@@ -283,7 +283,7 @@ static int Open ( vlc_object_t *p_this )
var_Get
(
p_enc
,
SOUT_CFG_PREFIX
"bframes"
,
&
val
);
if
(
val
.
i_int
>=
0
&&
val
.
i_int
<=
16
)
p_sys
->
param
.
i_bframe
=
val
.
i_int
;
#if X264_BUILD >= 2
3
#if X264_BUILD >= 2
2
var_Get
(
p_enc
,
SOUT_CFG_PREFIX
"bpyramid"
,
&
val
);
p_sys
->
param
.
b_bframe_pyramid
=
val
.
b_bool
;
#endif
...
...
@@ -298,7 +298,7 @@ static int Open ( vlc_object_t *p_this )
p_sys
->
param
.
i_scenecut_threshold
=
val
.
i_int
;
#endif
#if X264_BUILD >= 2
3
#if X264_BUILD >= 2
2
var_Get
(
p_enc
,
SOUT_CFG_PREFIX
"subpel"
,
&
val
);
if
(
val
.
i_int
>=
1
&&
val
.
i_int
<=
5
)
p_sys
->
param
.
analyse
.
i_subpel_refine
=
val
.
i_int
;
...
...
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