Remove unused variable vp9_64x64_zeros

Remove the unused variable vp9_64x64_zeros from vp9_encodeframe_.

Change-Id: I34bfdcab9a9105440ad05154c1e0516e70258785
This commit is contained in:
Jingning Han 2013-10-15 11:52:54 -07:00
parent 0a66541619
commit 9115d84509

View File

@ -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