Commit 2156ccaa authored by Jim Bankoski's avatar Jim Bankoski Committed by Gerrit Code Review
Browse files

Merge "resolve clang warnings : uninitialized vars in vp9_entropy.h"

Showing with 1 addition and 1 deletion
......@@ -341,7 +341,7 @@ static int get_entropy_context(const MACROBLOCKD *xd, TX_SIZE tx_size,
ENTROPY_CONTEXT *A, ENTROPY_CONTEXT *L,
const int16_t **scan,
const uint8_t **band_translate) {
ENTROPY_CONTEXT above_ec, left_ec;
ENTROPY_CONTEXT above_ec = 0, left_ec = 0;
switch (tx_size) {
case TX_4X4:
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment