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
8f601a32
Commit
8f601a32
authored
Mar 12, 2009
by
Sabourin Gilles
Committed by
Jean-Baptiste Kempf
Mar 12, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x264 Removed pre-scenecut definitions for build 67
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
49897b2f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
modules/codec/x264.c
modules/codec/x264.c
+6
-3
No files found.
modules/codec/x264.c
View file @
8f601a32
...
@@ -75,7 +75,7 @@ static void Close( vlc_object_t * );
...
@@ -75,7 +75,7 @@ static void Close( vlc_object_t * );
"I-frames are inserted only every other keyint frames, which probably " \
"I-frames are inserted only every other keyint frames, which probably " \
"leads to ugly encoding artifacts. Range 1 to 100." )
"leads to ugly encoding artifacts. Range 1 to 100." )
#if X264_BUILD >= 55
/* r607 */
#if X264_BUILD >= 55
/* r607 */
&& X264_BUILD < 67
/* r1117 */
#define PRESCENE_TEXT N_("Faster, less precise scenecut detection" )
#define PRESCENE_TEXT N_("Faster, less precise scenecut detection" )
#define PRESCENE_LONGTEXT N_( "Faster, less precise scenecut detection. " \
#define PRESCENE_LONGTEXT N_( "Faster, less precise scenecut detection. " \
"Required and implied by multi-threading." )
"Required and implied by multi-threading." )
...
@@ -434,7 +434,7 @@ vlc_module_begin ()
...
@@ -434,7 +434,7 @@ vlc_module_begin ()
SCENE_LONGTEXT
,
false
)
SCENE_LONGTEXT
,
false
)
change_integer_range
(
-
1
,
100
)
change_integer_range
(
-
1
,
100
)
#if X264_BUILD >= 55
/* r607 */
#if X264_BUILD >= 55
/* r607 */
&& X264_BUILD < 67
/* r1117 */
add_bool
(
SOUT_CFG_PREFIX
"pre-scenecut"
,
0
,
NULL
,
PRESCENE_TEXT
,
add_bool
(
SOUT_CFG_PREFIX
"pre-scenecut"
,
0
,
NULL
,
PRESCENE_TEXT
,
PRESCENE_LONGTEXT
,
false
)
PRESCENE_LONGTEXT
,
false
)
#endif
#endif
...
@@ -970,9 +970,12 @@ static int Open ( vlc_object_t *p_this )
...
@@ -970,9 +970,12 @@ static int Open ( vlc_object_t *p_this )
p_sys
->
param
.
i_scenecut_threshold
=
val
.
i_int
;
p_sys
->
param
.
i_scenecut_threshold
=
val
.
i_int
;
#endif
#endif
#if X264_BUILD >= 55
/* r607 */
#if X264_BUILD >= 55
/* r607 */
&& X264_BUILD < 67
/* r1117 */
var_Get
(
p_enc
,
SOUT_CFG_PREFIX
"pre-scenecut"
,
&
val
);
var_Get
(
p_enc
,
SOUT_CFG_PREFIX
"pre-scenecut"
,
&
val
);
p_sys
->
param
.
b_pre_scenecut
=
val
.
b_bool
;
p_sys
->
param
.
b_pre_scenecut
=
val
.
b_bool
;
#endif
#if X264_BUILD >= 55
/* r607 */
var_Get
(
p_enc
,
SOUT_CFG_PREFIX
"non-deterministic"
,
&
val
);
var_Get
(
p_enc
,
SOUT_CFG_PREFIX
"non-deterministic"
,
&
val
);
p_sys
->
param
.
b_deterministic
=
val
.
b_bool
;
p_sys
->
param
.
b_deterministic
=
val
.
b_bool
;
#endif
#endif
...
...
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