ref: a1d37ff6b54c6da71897246d87973c7d7f94b7ae
parent: 3ba067a4c874a517a42b1bee1e10fe60cfd4f988
parent: c5ee5f8f05dfd2fc2181d872888898cf3c0808c6
author: Ethan Hugg <[email protected]>
date: Mon Jan 13 04:01:59 EST 2014
Merge pull request #142 from mstorsjo/remove-unused-variable Remove an unused variable
--- a/codec/common/deblocking_common.cpp
+++ b/codec/common/deblocking_common.cpp
@@ -133,7 +133,7 @@
}
void_t DeblockChromaEq4_c (uint8_t* pPixCb, uint8_t* pPixCr, int32_t iStrideX, int32_t iStrideY, int32_t iAlpha,
int32_t iBeta) {
- int32_t i = 0, d = 0;
+ int32_t d = 0;
int32_t p0, p1, q0, q1;
bool_t bDetaP0Q0, bDetaP1P0, bDetaQ1Q0;
for (int32_t i = 0; i < 8; i++) {