[xiph-commits] r8771 - trunk/theora/doc/spec
tterribe at motherfish-iii.xiph.org
tterribe at motherfish-iii.xiph.org
Wed Jan 19 15:57:28 PST 2005
Author: tterribe
Date: 2005-01-19 15:57:26 -0800 (Wed, 19 Jan 2005)
New Revision: 8771
Modified:
trunk/theora/doc/spec/spec.tex
Log:
Fix off-by-one error in Huffman group indices.
Thanks to Andrey Filippov for the catch.
Modified: trunk/theora/doc/spec/spec.tex
===================================================================
--- trunk/theora/doc/spec/spec.tex 2005-01-19 23:32:27 UTC (rev 8770)
+++ trunk/theora/doc/spec/spec.tex 2005-01-19 23:57:26 UTC (rev 8771)
@@ -5128,10 +5128,10 @@
\begin{tabular}{lc}\toprule
\locvar{\ti} & \locvar{HG} \\\midrule
$0$ & $0$ \\
-$1\ldots 4$ & $1$ \\
-$5\ldots 13$ & $2$ \\
-$14\ldots 26$ & $3$ \\
-$27\ldots 63$ & $4$ \\
+$1\ldots 5$ & $1$ \\
+$6\ldots 14$ & $2$ \\
+$15\ldots 27$ & $3$ \\
+$28\ldots 63$ & $4$ \\
\bottomrule\end{tabular}
\end{center}
\caption{Huffman Table Groups}
More information about the commits
mailing list