Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
describe use of len in pseudo-code
Github: Closes #65
  • Loading branch information
dericed authored and michaelni committed May 18, 2017
1 parent 57c8936 commit ef51962
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ffv1.md
Expand Up @@ -1157,7 +1157,7 @@ initial\_state[ i ][ j ][ k ] = ( pred + initial\_state\_delta[ i ][ j ][ k ] )
## Quantization Tables
The quantization tables are stored by storing the number of equal entries -1 of the first half of the table using the method described in [Range Non Binary Values](#range-non-binary-values). The second half doesn’t need to be stored as it is identical to the first with flipped sign.
The quantization tables are stored by storing the number of equal entries -1 of the first half of the table (represented as `len - 1` in the pseudo-code below) using the method described in [Range Non Binary Values](#range-non-binary-values). The second half doesn’t need to be stored as it is identical to the first with flipped sign.
example:
Expand Down

0 comments on commit ef51962

Please sign in to comment.