Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
x264
Commits
d1df0c41
Commit
d1df0c41
authored
Oct 19, 2009
by
Fiona Glaser
Browse files
Fix a typo in b-pyramid help
And an errant space in common/macroblock.c
parent
62ff2d43
Changes
2
Hide whitespace changes
Inline
Side-by-side
common/macroblock.c
View file @
d1df0c41
...
@@ -33,7 +33,7 @@ void x264_mb_predict_mv( x264_t *h, int i_list, int idx, int i_width, int16_t mv
...
@@ -33,7 +33,7 @@ void x264_mb_predict_mv( x264_t *h, int i_list, int idx, int i_width, int16_t mv
int16_t
*
mv_a
=
h
->
mb
.
cache
.
mv
[
i_list
][
i8
-
1
];
int16_t
*
mv_a
=
h
->
mb
.
cache
.
mv
[
i_list
][
i8
-
1
];
int
i_refb
=
h
->
mb
.
cache
.
ref
[
i_list
][
i8
-
8
];
int
i_refb
=
h
->
mb
.
cache
.
ref
[
i_list
][
i8
-
8
];
int16_t
*
mv_b
=
h
->
mb
.
cache
.
mv
[
i_list
][
i8
-
8
];
int16_t
*
mv_b
=
h
->
mb
.
cache
.
mv
[
i_list
][
i8
-
8
];
int
i_refc
=
h
->
mb
.
cache
.
ref
[
i_list
][
i8
-
8
+
i_width
];
int
i_refc
=
h
->
mb
.
cache
.
ref
[
i_list
][
i8
-
8
+
i_width
];
int16_t
*
mv_c
=
h
->
mb
.
cache
.
mv
[
i_list
][
i8
-
8
+
i_width
];
int16_t
*
mv_c
=
h
->
mb
.
cache
.
mv
[
i_list
][
i8
-
8
+
i_width
];
int
i_count
=
0
;
int
i_count
=
0
;
...
...
x264.c
View file @
d1df0c41
...
@@ -200,7 +200,7 @@ static void Help( x264_param_t *defaults, int longhelp )
...
@@ -200,7 +200,7 @@ static void Help( x264_param_t *defaults, int longhelp )
H2
(
" --b-bias <integer> Influences how often B-frames are used [%d]
\n
"
,
defaults
->
i_bframe_bias
);
H2
(
" --b-bias <integer> Influences how often B-frames are used [%d]
\n
"
,
defaults
->
i_bframe_bias
);
H1
(
" --b-pyramid <string> Keep some B-frames as references [%s]
\n
"
H1
(
" --b-pyramid <string> Keep some B-frames as references [%s]
\n
"
" - none: Disabled
\n
"
" - none: Disabled
\n
"
" - strict: Strictly h
e
irarchical pyramid
\n
"
" - strict: Strictly hi
e
rarchical pyramid
\n
"
" - normal: Non-strict (not Blu-ray compatible)
\n
"
,
" - normal: Non-strict (not Blu-ray compatible)
\n
"
,
strtable_lookup
(
x264_b_pyramid_names
,
defaults
->
i_bframe_pyramid
)
);
strtable_lookup
(
x264_b_pyramid_names
,
defaults
->
i_bframe_pyramid
)
);
H1
(
" --no-cabac Disable CABAC
\n
"
);
H1
(
" --no-cabac Disable CABAC
\n
"
);
...
...
Write
Preview
Supports
Markdown
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