summaryrefslogtreecommitdiff
path: root/vp9
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2013-07-12 15:41:41 -0700
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2013-07-12 15:41:41 -0700
commitc9a2a06c20c8d72c67a3f53412f24ebae73c4526 (patch)
treeb7e6c27317e9019c3ea321a5afd531c991346665 /vp9
parent60969da5cb2006e25dbbe62d4f8defaa6ea95cfd (diff)
parentcca973a1ab3c1a756d647e59c7dd34957ec08c43 (diff)
downloadlibvpx-c9a2a06c20c8d72c67a3f53412f24ebae73c4526.tar
libvpx-c9a2a06c20c8d72c67a3f53412f24ebae73c4526.tar.gz
libvpx-c9a2a06c20c8d72c67a3f53412f24ebae73c4526.tar.bz2
libvpx-c9a2a06c20c8d72c67a3f53412f24ebae73c4526.zip
Merge "vp9_postproc: remove useless self-assign"
Diffstat (limited to 'vp9')
-rw-r--r--vp9/common/vp9_postproc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/common/vp9_postproc.c b/vp9/common/vp9_postproc.c
index 728a641aa..44e87c861 100644
--- a/vp9/common/vp9_postproc.c
+++ b/vp9/common/vp9_postproc.c
@@ -411,7 +411,7 @@ static void fillrd(struct postproc_state *state, int q, int a) {
}
- for (next = next; next < 256; next++)
+ for (; next < 256; next++)
char_dist[next] = 0;
}