summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_encodeframe.c
diff options
context:
space:
mode:
authorJingning Han <jingning@google.com>2013-09-10 12:05:22 -0700
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2013-09-10 12:05:22 -0700
commitcb24406da5367fbbbe00331d78f6ae30502c2193 (patch)
treed61cd8cb62a91da0abf69859073d82a8fa908713 /vp9/encoder/vp9_encodeframe.c
parent3d22d3ae0c77dbb529040aa7674a3799e201ba81 (diff)
parent18c780a0ff209940d361626c212e20b2559f48e8 (diff)
downloadlibvpx-cb24406da5367fbbbe00331d78f6ae30502c2193.tar
libvpx-cb24406da5367fbbbe00331d78f6ae30502c2193.tar.gz
libvpx-cb24406da5367fbbbe00331d78f6ae30502c2193.tar.bz2
libvpx-cb24406da5367fbbbe00331d78f6ae30502c2193.zip
Merge "Remove the use of uninitialized_safe in encode_sb_"
Diffstat (limited to 'vp9/encoder/vp9_encodeframe.c')
-rw-r--r--vp9/encoder/vp9_encodeframe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/encoder/vp9_encodeframe.c b/vp9/encoder/vp9_encodeframe.c
index 6a70e8e9d..837c5ff58 100644
--- a/vp9/encoder/vp9_encodeframe.c
+++ b/vp9/encoder/vp9_encodeframe.c
@@ -792,7 +792,7 @@ static void encode_sb(VP9_COMP *cpi, TOKENEXTRA **tp, int mi_row, int mi_col,
MACROBLOCKD * const xd = &x->e_mbd;
BLOCK_SIZE c1 = BLOCK_8X8;
const int bsl = b_width_log2(bsize), bs = (1 << bsl) / 4;
- int UNINITIALIZED_IS_SAFE(pl);
+ int pl = 0;
PARTITION_TYPE partition;
BLOCK_SIZE subsize;
int i;