summaryrefslogtreecommitdiff
path: root/vp9
diff options
context:
space:
mode:
authorYunqing Wang <yunqingwang@google.com>2015-05-12 14:36:46 -0700
committerYunqing Wang <yunqingwang@google.com>2015-05-12 15:01:40 -0700
commit8ba2d2d5a0f0f1c41e8de03544cab755270db711 (patch)
tree25568c98bf05e2e9bb5b5226d6f872774959f4c7 /vp9
parent5c02f88a813fe3fd1ea6eeeba954cdfd4e113f7f (diff)
downloadlibvpx-8ba2d2d5a0f0f1c41e8de03544cab755270db711.tar
libvpx-8ba2d2d5a0f0f1c41e8de03544cab755270db711.tar.gz
libvpx-8ba2d2d5a0f0f1c41e8de03544cab755270db711.tar.bz2
libvpx-8ba2d2d5a0f0f1c41e8de03544cab755270db711.zip
Remove unneeded variable declaration
This patch fixed the following warning: src\third_party\libvpx\source\libvpx\vp9\encoder\vp9_pickmode.c(1607) : warning C6246: Local declaration of 'this_mode' hides declaration of the same name in outer scope. Change-Id: I1d93c4a47a13cb13089fec5bd61e8b58e6cd8d58
Diffstat (limited to 'vp9')
-rw-r--r--vp9/encoder/vp9_pickmode.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/vp9/encoder/vp9_pickmode.c b/vp9/encoder/vp9_pickmode.c
index 9fb7cfba7..94253be3f 100644
--- a/vp9/encoder/vp9_pickmode.c
+++ b/vp9/encoder/vp9_pickmode.c
@@ -1594,7 +1594,6 @@ void vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x,
if (cpi->sf.adaptive_rd_thresh) {
THR_MODES best_mode_idx = mode_idx[best_ref_frame][mode_offset(mbmi->mode)];
- PREDICTION_MODE this_mode;
if (best_ref_frame == INTRA_FRAME) {
// Only consider the modes that are included in the intra_mode_list.
@@ -1604,12 +1603,12 @@ void vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x,
// TODO(yunqingwang): Check intra mode mask and only update freq_fact
// for those valid modes.
for (i = 0; i < intra_modes; i++) {
- PREDICTION_MODE this_mode = intra_mode_list[i];
update_thresh_freq_fact(cpi, tile_data, bsize, INTRA_FRAME,
- best_mode_idx, this_mode);
+ best_mode_idx, intra_mode_list[i]);
}
} else {
for (ref_frame = LAST_FRAME; ref_frame <= GOLDEN_FRAME; ++ref_frame) {
+ PREDICTION_MODE this_mode;
if (best_ref_frame != ref_frame) continue;
for (this_mode = NEARESTMV; this_mode <= NEWMV; ++this_mode) {
update_thresh_freq_fact(cpi, tile_data, bsize, ref_frame,