From 2d71b80d9381764b860725c05e5cc6af03ef5adf Mon Sep 17 00:00:00 2001 From: Frank Galligan Date: Thu, 26 Oct 2017 16:12:06 -0700 Subject: [PATCH] Spec: Fix DecodeTaggedSymbols - Addresses a comment in KhronosGroup/glTF#1114 --- docs/spec/rans.decoding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/spec/rans.decoding.md b/docs/spec/rans.decoding.md index bf5f972..39e5f7d 100644 --- a/docs/spec/rans.decoding.md +++ b/docs/spec/rans.decoding.md @@ -24,7 +24,7 @@ void DecodeTaggedSymbols(num_values, num_components, out_values) { BuildSymbolTables(num_symbols_, lut_table_, probability_table_); size varUI64 encoded_data UI8[size] - RansInitDecoder(ans_, &encoded_data[0], size, l_rans_base); + RansInitDecoder(ans_, &encoded_data[0], size, TAGGED_RANS_BASE); for (i = 0; i < num_values; i += num_components) { RansRead(ans_, TAGGED_RANS_BASE, TAGGED_RANS_PRECISION, lut_table_, probability_table_, &size);