[xiph-cvs] cvs commit: theora/lib dct_decode.c
Ralph Giles
giles at xiph.org
Thu Mar 18 09:10:01 PST 2004
giles 04/03/18 12:10:01
Modified: lib dct_decode.c
Log:
Our loop filter limit values require 5 bits. I can't count.
Revision Changes Path
1.12 +2 -2 theora/lib/dct_decode.c
Index: dct_decode.c
===================================================================
RCS file: /usr/local/cvsroot/theora/lib/dct_decode.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- a/dct_decode.c 18 Mar 2004 02:00:30 -0000 1.11
+++ b/dct_decode.c 18 Mar 2004 17:10:00 -0000 1.12
@@ -11,7 +11,7 @@
********************************************************************
function:
- last mod: $Id: dct_decode.c,v 1.11 2004/03/18 02:00:30 giles Exp $
+ last mod: $Id: dct_decode.c,v 1.12 2004/03/18 17:10:00 giles Exp $
********************************************************************/
@@ -73,7 +73,7 @@
void WriteFilterTables(PB_INSTANCE *pbi, oggpack_buffer *opb){
int i;
- int bits=4;
+ int bits=5;
oggpackB_write(opb, bits, 3);
for(i=0;i<Q_TABLE_SIZE;i++)
oggpackB_write(opb, pbi->LoopFilterLimits[i],bits);
<p><p>--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
More information about the commits
mailing list