Skip to content
GitLab
Menu
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
1ae9f2cf
Commit
1ae9f2cf
authored
Oct 04, 2016
by
Debargha Mukherjee
Browse files
Silence some warnings
Change-Id: I8efb64eac3438484e7a77a8a1db198223fc52bfa
parent
cb603790
Changes
3
Hide whitespace changes
Inline
Side-by-side
av1/encoder/mcomp.c
View file @
1ae9f2cf
...
...
@@ -2591,7 +2591,7 @@ int av1_find_best_masked_sub_pixel_tree_up(
if
(
use_upsampled_ref
)
besterr
=
upsampled_setup_masked_center_error
(
xd
,
mask
,
mask_stride
,
bestmv
,
ref_mv
,
error_per_bit
,
vfp
,
z
,
src_stride
,
y
,
y_stride
,
w
,
h
,
(
offset
<<
3
),
mvjcost
,
mvcost
,
sse1
,
src_stride
,
y
,
y_stride
,
w
,
h
,
(
offset
*
8
),
mvjcost
,
mvcost
,
sse1
,
distortion
);
else
besterr
=
setup_masked_center_error
(
...
...
@@ -3090,7 +3090,7 @@ int av1_find_best_obmc_sub_pixel_tree_up(
if
(
use_upsampled_ref
)
besterr
=
upsampled_setup_obmc_center_error
(
xd
,
mask
,
bestmv
,
ref_mv
,
error_per_bit
,
vfp
,
z
,
y
,
y_stride
,
w
,
h
,
(
offset
<<
3
),
mvjcost
,
mvcost
,
sse1
,
distortion
);
(
offset
*
8
),
mvjcost
,
mvcost
,
sse1
,
distortion
);
else
besterr
=
setup_obmc_center_error
(
mask
,
bestmv
,
ref_mv
,
error_per_bit
,
vfp
,
z
,
y
,
y_stride
,
offset
,
mvjcost
,
mvcost
,
...
...
av1/encoder/rdopt.c
View file @
1ae9f2cf
...
...
@@ -2713,7 +2713,7 @@ static int64_t rd_pick_intra_sby_mode(AV1_COMP *cpi, MACROBLOCK *x, int *rate,
#endif // CONFIG_EXT_INTRA
this_rd = RDCOST(x->rdmult, x->rddiv, this_rate, this_distortion);
#if CONFIG_EXT_INTRA
if (best_rd == INT64_MAX || this_rd
< (
best_rd
+
(best_rd >> 4))
)
{
if (best_rd == INT64_MAX || this_rd
-
best_rd
<
(best_rd >> 4)) {
filter_intra_mode_skip_mask ^= (1 << mic->mbmi.mode);
}
#endif // CONFIG_EXT_INTRA
...
...
@@ -8958,7 +8958,7 @@ void av1_rd_pick_inter_mode_sb(AV1_COMP *cpi, TileDataEnc *tile_data,
backup_fmv[0] = frame_mv[NEWMV][ref_frame];
if (comp_pred) backup_fmv[1] = frame_mv[NEWMV][second_ref_frame];
rate2 += cpi->drl_mode_cost0[drl_ctx][0];
rate2 +=
(rate2 < INT_MAX ?
cpi->drl_mode_cost0[drl_ctx][0]
: 0)
;
if (this_rd < INT64_MAX) {
if (RDCOST(x->rdmult, x->rddiv, rate_y + rate_uv, distortion2) <
...
...
@@ -9049,7 +9049,7 @@ void av1_rd_pick_inter_mode_sb(AV1_COMP *cpi, TileDataEnc *tile_data,
uint8_t drl1_ctx = 0;
drl1_ctx = av1_drl_ctx(mbmi_ext->ref_mv_stack[ref_frame_type],
i + idx_offset);
tmp_rate += cpi->drl_mode_cost0[drl1_ctx][1];
tmp_rate +=
(tmp_rate < INT_MAX ?
cpi->drl_mode_cost0[drl1_ctx][1]
: 0)
;
}
if (mbmi_ext->ref_mv_count[ref_frame_type] >
...
...
av1/encoder/temporal_filter.c
View file @
1ae9f2cf
...
...
@@ -112,8 +112,8 @@ void av1_temporal_filter_apply_c(uint8_t *frame1, unsigned int stride,
for
(
idy
=
-
1
;
idy
<=
1
;
++
idy
)
{
for
(
idx
=
-
1
;
idx
<=
1
;
++
idx
)
{
int
row
=
i
+
idy
;
int
col
=
j
+
idx
;
int
row
=
(
int
)
i
+
idy
;
int
col
=
(
int
)
j
+
idx
;
if
(
row
>=
0
&&
row
<
(
int
)
block_height
&&
col
>=
0
&&
col
<
(
int
)
block_width
)
{
...
...
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