vp9: Fix the clang warning of unsigned int type.

Change-Id: I6308db16bd626fa5943925471e9171f567669350
This commit is contained in:
jackychen
2016-07-20 15:58:35 -07:00
parent 7bb35db872
commit 71f9cbcfc8

View File

@@ -2120,7 +2120,7 @@ void adjust_gf_boost_lag_one_pass_vbr(VP9_COMP *cpi, uint64_t avg_sad_current) {
double rate_err = 1.0; double rate_err = 1.0;
// Get measure of complexity over the future frames, and get the first // Get measure of complexity over the future frames, and get the first
// future frame with high_source_sad/scene-change. // future frame with high_source_sad/scene-change.
int tot_frames = vp9_lookahead_depth(cpi->lookahead) - 1; int tot_frames = (int)vp9_lookahead_depth(cpi->lookahead) - 1;
for (frame = tot_frames; frame >= 1; --frame) { for (frame = tot_frames; frame >= 1; --frame) {
const int lagframe_idx = tot_frames - frame + 1; const int lagframe_idx = tot_frames - frame + 1;
uint64_t reference_sad = rc->avg_source_sad[0]; uint64_t reference_sad = rc->avg_source_sad[0];
@@ -2254,8 +2254,8 @@ void vp9_avg_source_sad(VP9_COMP *cpi) {
} }
if (cpi->oxcf.lag_in_frames > 0) { if (cpi->oxcf.lag_in_frames > 0) {
frames_to_buffer = (cm->current_video_frame == 1) ? frames_to_buffer = (cm->current_video_frame == 1) ?
vp9_lookahead_depth(cpi->lookahead) - 1: 2; (int)vp9_lookahead_depth(cpi->lookahead) - 1: 2;
start_frame = vp9_lookahead_depth(cpi->lookahead) - 1; start_frame = (int)vp9_lookahead_depth(cpi->lookahead) - 1;
for (frame = 0; frame < frames_to_buffer; ++frame) { for (frame = 0; frame < frames_to_buffer; ++frame) {
const int lagframe_idx = start_frame - frame; const int lagframe_idx = start_frame - frame;
if (lagframe_idx >= 0) { if (lagframe_idx >= 0) {