summaryrefslogtreecommitdiff
path: root/vp8/encoder/picklpf.c
diff options
context:
space:
mode:
authorPaul Wilkins <paulwilkins@google.com>2011-09-13 15:24:45 +0100
committerPaul Wilkins <paulwilkins@google.com>2011-09-13 16:57:17 +0100
commit1741cc7ab94ebe1b608c1765da75421f6616c49e (patch)
tree5e10cda93739d2d21b97057f0ae09ac00be6a1dd /vp8/encoder/picklpf.c
parent1c24442a07b83c2ec22e9635fe570b5ea42ce784 (diff)
downloadlibvpx-1741cc7ab94ebe1b608c1765da75421f6616c49e.tar
libvpx-1741cc7ab94ebe1b608c1765da75421f6616c49e.tar.gz
libvpx-1741cc7ab94ebe1b608c1765da75421f6616c49e.tar.bz2
libvpx-1741cc7ab94ebe1b608c1765da75421f6616c49e.zip
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
Diffstat (limited to 'vp8/encoder/picklpf.c')
-rw-r--r--vp8/encoder/picklpf.c2
1 files changed, 1 insertions, 1 deletions
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];
}