Path: blob/master/libmupen64plus/mupen64plus-video-glide64mk2/src/Glide64/CRC.cpp
2 views
/*1* Glide64 - Glide video plugin for Nintendo 64 emulators.2* Copyright (c) 2002 Dave20013* Copyright (c) 2003-2009 Sergey 'Gonetz' Lipski4*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License as published by7* the Free Software Foundation; either version 2 of the License, or8* any later version.9*10* This program is distributed in the hope that it will be useful,11* but WITHOUT ANY WARRANTY; without even the implied warranty of12* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the13* GNU General Public License for more details.14*15* You should have received a copy of the GNU General Public License16* along with this program; if not, write to the Free Software17* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA18*/1920//****************************************************************21//22// Glide64 - Glide Plugin for Nintendo 64 emulators23// Project started on December 29th, 200124//25// Authors:26// Dave2001, original author, founded the project in 2001, left it in 200227// Gugaman, joined the project in 2002, left it in 200228// Sergey 'Gonetz' Lipski, joined the project in 2002, main author since fall of 200229// Hiroshi 'KoolSmoky' Morii, joined the project in 200730//31//****************************************************************32//33// To modify Glide64:34// * Write your name and (optional)email, commented by your work, so I know who did it, and so that you can find which parts you modified when it comes time to send it to me.35// * Do NOT send me the whole project or file that you modified. Take out your modified code sections, and tell me where to put them. If people sent the whole thing, I would have many different versions, but no idea how to combine them all.36//37//****************************************************************38//39// CRC32 calculation functions40//41// Created by Gonetz, 200442//43//****************************************************************44//*45#define CRC32_POLYNOMIAL 0x04C11DB74647unsigned int CRCTable[ 256 ];4849unsigned int Reflect( unsigned int ref, char ch )50{51unsigned int value = 0;5253// Swap bit 0 for bit 754// bit 1 for bit 6, etc.55for (char i = 1; i < (ch + 1); i++)56{57if(ref & 1)58value |= 1 << (ch - i);59ref >>= 1;60}61return value;62}6364void CRC_BuildTable()65{66unsigned int crc;6768for (unsigned i = 0; i <= 255; i++)69{70crc = Reflect( i, 8 ) << 24;71for (unsigned j = 0; j < 8; j++)72crc = (crc << 1) ^ (crc & (1 << 31) ? CRC32_POLYNOMIAL : 0);7374CRCTable[i] = Reflect( crc, 32 );75}76}77//*/78//*79unsigned int CRC32( unsigned int crc, void *buffer, unsigned int count )80{81unsigned int orig = crc;82unsigned char * p = reinterpret_cast<unsigned char*>(buffer);83while (count--)84crc = (crc >> 8) ^ CRCTable[(crc & 0xFF) ^ *p++];85return crc ^ orig;86}87//*/8889/*90wxUint32 CRC_Calculate( wxUint32 crc, void *buffer, wxUint32 count )91{92wxUint32 Crc32=crc;93__asm {94mov esi, buffer95mov ecx, count96mov edx, crc97xor eax, eax9899loop1:100inc esi101mov al, dl102xor al, byte ptr [esi]103shr edx, 8104mov ebx, [CRCTable+eax*4]105xor edx, ebx106107loop loop1108109xor Crc32, edx110}111return Crc32;112}113*/114115/*116unsigned int CRC_Calculate( unsigned int crc, void *buffer, unsigned int count )117{118unsigned int Crc32=crc;119__asm {120mov esi, buffer121mov edx, count122add edx, esi123mov ecx, crc124125loop1:126mov bl, byte ptr [esi]127movzx eax, cl128inc esi129xor al, bl130shr ecx, 8131mov ebx, [CRCTable+eax*4]132xor ecx, ebx133134cmp edx, esi135jne loop1136137xor Crc32, ecx138}139return Crc32;140}141//*/142143144