Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
fed9e1fe
Commit
fed9e1fe
authored
Feb 27, 2015
by
Adrian Grange
Committed by
Gerrit Code Review
Mar 04, 2015
Browse files
Small rationalization of code in vp9_first_pass
Change-Id: I87cc0e038171c60a957298827e312fead500f7fb
parent
3807dd82
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_firstpass.c
View file @
fed9e1fe
...
...
@@ -493,10 +493,6 @@ void vp9_first_pass(VP9_COMP *cpi, const struct lookahead_entry *source) {
assert
(
new_yv12
!=
NULL
);
assert
((
lc
!=
NULL
)
||
frame_is_intra_only
(
cm
)
||
(
lst_yv12
!=
NULL
));
recon_y_stride
=
new_yv12
->
y_stride
;
recon_uv_stride
=
new_yv12
->
uv_stride
;
uv_mb_height
=
16
>>
(
new_yv12
->
y_height
>
new_yv12
->
uv_height
);
#if CONFIG_FP_MB_STATS
if
(
cpi
->
use_fp_mb_stats
)
{
vp9_zero_array
(
cpi
->
twopass
.
frame_mb_stats_buf
,
cm
->
initial_mbs
);
...
...
@@ -548,10 +544,6 @@ void vp9_first_pass(VP9_COMP *cpi, const struct lookahead_entry *source) {
gld_yv12
=
NULL
;
}
recon_y_stride
=
new_yv12
->
y_stride
;
recon_uv_stride
=
new_yv12
->
uv_stride
;
uv_mb_height
=
16
>>
(
new_yv12
->
y_height
>
new_yv12
->
uv_height
);
set_ref_ptrs
(
cm
,
xd
,
(
cpi
->
ref_frame_flags
&
VP9_LAST_FLAG
)
?
LAST_FRAME
:
NONE
,
(
cpi
->
ref_frame_flags
&
VP9_GOLD_FLAG
)
?
GOLDEN_FRAME
:
NONE
);
...
...
@@ -588,6 +580,10 @@ void vp9_first_pass(VP9_COMP *cpi, const struct lookahead_entry *source) {
// Tiling is ignored in the first pass.
vp9_tile_init
(
&
tile
,
cm
,
0
,
0
);
recon_y_stride
=
new_yv12
->
y_stride
;
recon_uv_stride
=
new_yv12
->
uv_stride
;
uv_mb_height
=
16
>>
(
new_yv12
->
y_height
>
new_yv12
->
uv_height
);
for
(
mb_row
=
0
;
mb_row
<
cm
->
mb_rows
;
++
mb_row
)
{
MV
best_ref_mv
=
{
0
,
0
};
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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