Commit bda454ef authored by kabi's avatar kabi

* init table once


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1203 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9e59a0a3
......@@ -1344,16 +1344,20 @@ static void clear_blocks_c(DCTELEM *blocks)
void dsputil_init(DSPContext* c, unsigned mask)
{
static int init_done = 0;
int i;
for(i=0;i<256;i++) cropTbl[i + MAX_NEG_CROP] = i;
for(i=0;i<MAX_NEG_CROP;i++) {
cropTbl[i] = 0;
cropTbl[i + MAX_NEG_CROP + 256] = 255;
}
if (!init_done) {
for(i=0;i<256;i++) cropTbl[i + MAX_NEG_CROP] = i;
for(i=0;i<MAX_NEG_CROP;i++) {
cropTbl[i] = 0;
cropTbl[i + MAX_NEG_CROP + 256] = 255;
}
for(i=0;i<512;i++) {
squareTbl[i] = (i - 256) * (i - 256);
for(i=0;i<512;i++) {
squareTbl[i] = (i - 256) * (i - 256);
}
init_done = 1;
}
c->get_pixels = get_pixels_c;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment