Skip to content

Commit 9c013d0

Browse files
dericedmichaelni
authored andcommitted
Parts of "nitpicks, commas, formatting, adjusted expressions"
Signed-off-by: Michael Niedermayer <[email protected]>
1 parent 6a8980e commit 9c013d0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ffv1.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ Note: the operators and the order of precedence are the same as used in the C pr
9494
9595
`a ^ b` means a raised to the b-th power.
9696
97-
`a & b` means bit-wise "and" of a and b.
97+
`a & b` means bitwise "and" of a and b.
9898
99-
`a | b` means bit-wise "or" of a and b.
99+
`a | b` means bitwise "or" of a and b.
100100
101101
`a >> b` means arithmetic right shift of the two's complement integer representation of a by b binary digits. This is equivalent to dividing a by 2, b times, with rounding toward negative infinity.
102102
@@ -439,7 +439,7 @@ Figure: Description of the coding of the Sample Difference in the bitstream. {#f
439439
440440
### Range Coding Mode
441441
442-
Early experimental versions of FFV1 used the CABAC Arithmetic coder from H.264 as defined in [@ISO.14496-10.2020], but due to the uncertain patent/royalty situation, as well as its slightly worse performance, CABAC was replaced by a range coder based on an algorithm defined by G. Nigel N. Martin in 1979 [@?Range-Encoding].
442+
Early experimental versions of FFV1 used the Context-Adaptive Binary Arithmetic Coding (CABAC) coder from H.264 as defined in [@ISO.14496-10.2020], but due to the uncertain patent/royalty situation, as well as its slightly worse performance, CABAC was replaced by a range coder based on an algorithm defined by G. Nigel N. Martin in 1979 [@?Range-Encoding].
443443
444444
#### Range Binary Values
445445
@@ -1019,7 +1019,7 @@ QuantizationTable(i, j, scale) { |
10191019

10201020
### `quant_tables`
10211021

1022-
`quant_tables[ i ][ j ][ k ]` indicates the quantization table value of the Quantized Sample Difference `k` of the Quantization Table `j` of the Quantization Table Set `i`.
1022+
`quant_tables[ i ][ j ][ k ]` indicates the Quantization Table value of the Quantized Sample Difference `k` of the Quantization Table `j` of the Quantization Table Set `i`.
10231023

10241024
### `context_count`
10251025

0 commit comments

Comments
 (0)