Skip to content

Commit

Permalink
ffv1: remove trailing whitespace
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
  • Loading branch information
michaelni committed Apr 21, 2016
1 parent 2c2f6fc commit c9c2d4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ffv1.md
Expand Up @@ -266,7 +266,7 @@ void put_symbol(RangeCoder *c, uint8_t *state, int v, int is_signed) {
    put_rac(c, state+0, !v);
    if (v) {
        int a= ABS(v);
        int e= log2(a); 
        int e= log2(a);

        for (i=0; i<e; i++)
            put_rac(c, state+1+MIN(i,9), 1);  //1..10
Expand Down

0 comments on commit c9c2d4f

Please sign in to comment.