ref: c75f0ec379311ff06d8333ccd19a566eb1be9dc5
parent: fd294c553aa63d8047e5c8e20c37bac9b2185e15
parent: 24196dd9873df87b5c2dd1de509dc44455741ea9
author: John Koleszar <jkoleszar@google.com>
date: Mon Dec 19 04:50:12 EST 2011
Merge "fix: make sure ss_err is large enough"
--- a/vp8/encoder/picklpf.c
+++ b/vp8/encoder/picklpf.c
@@ -289,7 +289,7 @@
int Bias = 0; // Bias against raising loop filter and in favor of lowering it
- int ss_err[MAX_LOOP_FILTER];
+ int ss_err[MAX_LOOP_FILTER + 1];
YV12_BUFFER_CONFIG * saved_frame = cm->frame_to_show;
--
⑨