Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
b44397eb
Commit
b44397eb
authored
Oct 18, 2012
by
Ronald S. Bultje
Committed by
Gerrit Code Review
Oct 18, 2012
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Fix encode breakout skip handling." into experimental
parents
1f11d13e
87d2b254
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
vp8/encoder/rdopt.c
vp8/encoder/rdopt.c
+10
-10
No files found.
vp8/encoder/rdopt.c
View file @
b44397eb
...
...
@@ -3956,22 +3956,22 @@ void vp8_rd_pick_inter_mode(VP8_COMP *cpi, MACROBLOCK *x, int recon_yoffset, int
disable_skip = 1;
this_rd = RDCOST(x->rdmult, x->rddiv, rate2, distortion2);
break
;
}
}
}
}
vp8_build_1st_inter16x16_predictors_mbuv
(
&
x
->
e_mbd
,
&
xd
->
predictor
[
256
],
&
xd
->
predictor
[
320
],
8
);
if
(
is_comp_pred
)
vp8_build_2nd_inter16x16_predictors_mbuv
(
&
x
->
e_mbd
,
&
xd
->
predictor
[
256
],
if (!x->skip) {
vp8_build_1st_inter16x16_predictors_mbuv(&x->e_mbd, &xd->predictor[256],
&xd->predictor[320], 8);
inter_mode_cost
(
cpi
,
x
,
this_mode
,
&
rate2
,
&
distortion2
,
&
rate_y
,
&
distortion
,
&
rate_uv
,
&
distortion_uv
,
&
skippable
,
txfm_cache
);
if (is_comp_pred)
vp8_build_2nd_inter16x16_predictors_mbuv(&x->e_mbd,
&xd->predictor[256],
&xd->predictor[320], 8);
inter_mode_cost(cpi, x, this_mode, &rate2, &distortion2,
&rate_y, &distortion, &rate_uv, &distortion_uv,
&skippable, txfm_cache);
}
if (is_comp_pred)
mode_excluded = cpi->common.comp_pred_mode == SINGLE_PREDICTION_ONLY;
else
...
...
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