Imported Upstream version 0.79.2
This commit is contained in:
committed by
TANIGUCHI Takaki
parent
c3da7b4a44
commit
bfe15b23fb
19
galois.c
19
galois.c
@@ -1,5 +1,5 @@
|
||||
/* dvdisaster: Additional error correction for optical media.
|
||||
* Copyright (C) 2004-2009 Carsten Gnoerlich.
|
||||
* Copyright (C) 2004-2010 Carsten Gnoerlich.
|
||||
* Project home page: http://www.dvdisaster.com
|
||||
* Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org
|
||||
*
|
||||
@@ -84,7 +84,7 @@ void FreeGaloisTables(GaloisTables *gt)
|
||||
}
|
||||
|
||||
/***
|
||||
*** Create the the Reed-Solomon generator polynomial
|
||||
*** Create the Reed-Solomon generator polynomial
|
||||
*** and some auxiliary data structures.
|
||||
*/
|
||||
|
||||
@@ -95,6 +95,7 @@ ReedSolomonTables *CreateReedSolomonTables(GaloisTables *gt,
|
||||
{ ReedSolomonTables *rt = g_malloc0(sizeof(ReedSolomonTables));
|
||||
int lut_size, feedback;
|
||||
gint32 i,j,root;
|
||||
guint8 *lut;
|
||||
|
||||
rt->gfTables = gt;
|
||||
rt->fcr = first_consecutive_root;
|
||||
@@ -151,7 +152,9 @@ ReedSolomonTables *CreateReedSolomonTables(GaloisTables *gt,
|
||||
rt->shiftInit = 0;
|
||||
|
||||
/*
|
||||
* Initialize lookup tables for the 8bit encoder
|
||||
* Initialize lookup tables for both encoder types.
|
||||
* The 32bit portable encoder will shift them to word boundaries,
|
||||
* while the SSE2 encoder does direct unaligned reads.
|
||||
*/
|
||||
|
||||
lut_size = (rt->nroots+15)&~15;
|
||||
@@ -170,6 +173,15 @@ ReedSolomonTables *CreateReedSolomonTables(GaloisTables *gt,
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Prepare lookup table for syndrome calculation.
|
||||
*/
|
||||
|
||||
lut = rt->synLut = g_malloc(rt->nroots * GF_FIELDSIZE * sizeof(int));
|
||||
for(i=0; i<rt->nroots; i++)
|
||||
for(j=0; j<GF_FIELDSIZE; j++)
|
||||
*lut++ = gt->alphaTo[mod_fieldmax(gt->indexOf[j] + (rt->fcr+i)*rt->primElem)];
|
||||
|
||||
return rt;
|
||||
}
|
||||
|
||||
@@ -181,6 +193,7 @@ void FreeReedSolomonTables(ReedSolomonTables *rt)
|
||||
for(i=0; i<GF_FIELDSIZE; i++)
|
||||
{ g_free(rt->bLut[i]);
|
||||
}
|
||||
g_free(rt->synLut);
|
||||
|
||||
g_free(rt);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user