summaryrefslogtreecommitdiff
path: root/vp9/encoder
diff options
context:
space:
mode:
authorJingning Han <jingning@google.com>2013-10-15 11:52:54 -0700
committerJingning Han <jingning@google.com>2013-10-15 11:53:46 -0700
commit9115d84509466aac80f4eefa0b0653999deb932c (patch)
tree9ed754da1118f57614f51e9f16b15396ec75bc65 /vp9/encoder
parent0a665416199f714fde0416b2aedbba67e1582f94 (diff)
downloadlibvpx-9115d84509466aac80f4eefa0b0653999deb932c.tar
libvpx-9115d84509466aac80f4eefa0b0653999deb932c.tar.gz
libvpx-9115d84509466aac80f4eefa0b0653999deb932c.tar.bz2
libvpx-9115d84509466aac80f4eefa0b0653999deb932c.zip
Remove unused variable vp9_64x64_zeros
Remove the unused variable vp9_64x64_zeros from vp9_encodeframe_. Change-Id: I34bfdcab9a9105440ad05154c1e0516e70258785
Diffstat (limited to 'vp9/encoder')
-rw-r--r--vp9/encoder/vp9_encodeframe.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/vp9/encoder/vp9_encodeframe.c b/vp9/encoder/vp9_encodeframe.c
index b74609bc2..15c3f566a 100644
--- a/vp9/encoder/vp9_encodeframe.c
+++ b/vp9/encoder/vp9_encodeframe.c
@@ -123,7 +123,6 @@ static unsigned int tt_activity_measure(MACROBLOCK *x) {
static unsigned int alt_activity_measure(MACROBLOCK *x, int use_dc_pred) {
return vp9_encode_intra(x, use_dc_pred);
}
-DECLARE_ALIGNED(16, static const uint8_t, vp9_64x64_zeros[64*64]) = {0};
// Measure the activity of the current macroblock
// What we measure here is TBD so abstracted to this function