Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
f5cbe602
Commit
f5cbe602
authored
Apr 18, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x264: handle obsolete parameters (fix #2667)
parent
d83ebc7e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
modules/codec/x264.c
modules/codec/x264.c
+11
-3
src/misc/linux_specific.c
src/misc/linux_specific.c
+1
-1
No files found.
modules/codec/x264.c
View file @
f5cbe602
...
...
@@ -439,7 +439,7 @@ vlc_module_begin ()
add_bool
(
SOUT_CFG_PREFIX
"pre-scenecut"
,
0
,
NULL
,
PRESCENE_TEXT
,
PRESCENE_LONGTEXT
,
false
)
# else
add_obsolete_bool
(
"pre-scenecut"
)
add_obsolete_bool
(
SOUT_CFG_PREFIX
"pre-scenecut"
)
# endif
#endif
...
...
@@ -610,9 +610,13 @@ vlc_module_begin ()
change_integer_range
(
1
,
SUBME_MAX
)
add_deprecated_alias
(
SOUT_CFG_PREFIX
"subpel"
)
/* Deprecated since 0.8.5 */
#if X264_BUILD >= 41 && X264_BUILD < 65
/* r368 */
#if X264_BUILD >= 41
# if X264_BUILD < 65
/* r368 */
add_bool
(
SOUT_CFG_PREFIX
"b-rdo"
,
0
,
NULL
,
B_RDO_TEXT
,
B_RDO_LONGTEXT
,
false
)
# else
add_obsolete_bool
(
SOUT_CFG_PREFIX
"b-rdo"
)
# endif
#endif
#if X264_BUILD >= 36
/* r318 */
...
...
@@ -625,9 +629,13 @@ vlc_module_begin ()
CHROMA_ME_LONGTEXT
,
false
)
#endif
#if X264_BUILD >= 43 && X264_BUILD < 65
/* r390 */
#if X264_BUILD >= 43
# if X264_BUILD < 65
/* r390 */
add_bool
(
SOUT_CFG_PREFIX
"bime"
,
0
,
NULL
,
BIME_TEXT
,
BIME_LONGTEXT
,
false
)
# else
add_obsolete_bool
(
SOUT_CFG_PREFIX
"bime"
)
# endif
#endif
#if X264_BUILD >= 30
/* r251 */
...
...
src/misc/linux_specific.c
View file @
f5cbe602
...
...
@@ -90,7 +90,7 @@ void system_Init (libvlc_int_t *libvlc, int *argc, const char *argv[])
fputs
(
"LibVLC has detected an unusable buggy GNU/libc version.
\n
"
"Please update to version 2.8 or newer.
\n
"
,
stderr
);
fflush
(
stderr
);
abort
();
//
abort ();
}
#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