From 1741cc7ab94ebe1b608c1765da75421f6616c49e Mon Sep 17 00:00:00 2001 From: Paul Wilkins Date: Tue, 13 Sep 2011 15:24:45 +0100 Subject: Reverse coding order for segment features: Code all the features for one segment (grouped together) then all for the next etc. etc. rather than grouping the data by feature. Change-Id: I2a65193b3a70aca78f92e855e35d8969d857b6dd --- vp8/encoder/picklpf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vp8/encoder/picklpf.c') diff --git a/vp8/encoder/picklpf.c b/vp8/encoder/picklpf.c index df8a2b279..0585d66e2 100644 --- a/vp8/encoder/picklpf.c +++ b/vp8/encoder/picklpf.c @@ -261,7 +261,7 @@ void vp8cx_set_alt_lf_level(VP8_COMP *cpi, int filt_val) mbd->segment_feature_data[0][SEG_LVL_ALT_LF] = cpi->segment_feature_data[0][SEG_LVL_ALT_LF]; mbd->segment_feature_data[1][SEG_LVL_ALT_LF] = cpi->segment_feature_data[1][SEG_LVL_ALT_LF]; - mbd->segment_feature_data[2][SEG_LVL_ALT_LF] = cpi->segment_feature_data[2[SEG_LVL_ALT_LF]]; + mbd->segment_feature_data[2][SEG_LVL_ALT_LF] = cpi->segment_feature_data[2][SEG_LVL_ALT_LF]; mbd->segment_feature_data[3][SEG_LVL_ALT_LF] = cpi->segment_feature_data[3][SEG_LVL_ALT_LF]; } -- cgit v1.2.3