You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

105 lines
3.0KB

  1. /*
  2. * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "common.h"
  21. #include "crc.h"
  22. AVCRC *av_crcEDB88320;
  23. AVCRC *av_crc04C11DB7;
  24. AVCRC *av_crc8005 ;
  25. AVCRC *av_crc07 ;
  26. /**
  27. * Inits a crc table.
  28. * @param ctx must be an array of sizeof(AVCRC)*257 or sizeof(AVCRC)*1024
  29. * @param cts_size size of ctx in bytes
  30. * @return <0 on failure
  31. */
  32. int av_crc_init(AVCRC *ctx, int le, int bits, uint32_t poly, int ctx_size){
  33. int i, j;
  34. uint32_t c;
  35. if (bits < 8 || bits > 32 || poly >= (1LL<<bits))
  36. return -1;
  37. if (ctx_size != sizeof(AVCRC)*257 && ctx_size != sizeof(AVCRC)*1024)
  38. return -1;
  39. for (i = 0; i < 256; i++) {
  40. if (le) {
  41. for (c = i, j = 0; j < 8; j++)
  42. c = (c>>1)^(poly & (-(c&1)));
  43. ctx[i] = c;
  44. } else {
  45. for (c = i << 24, j = 0; j < 8; j++)
  46. c = (c<<1) ^ ((poly<<(32-bits)) & (((int32_t)c)>>31) );
  47. ctx[i] = bswap_32(c);
  48. }
  49. }
  50. ctx[256]=1;
  51. #ifndef CONFIG_SMALL
  52. if(ctx_size >= sizeof(AVCRC)*1024)
  53. for (i = 0; i < 256; i++)
  54. for(j=0; j<3; j++)
  55. ctx[256*(j+1) + i]= (ctx[256*j + i]>>8) ^ ctx[ ctx[256*j + i]&0xFF ];
  56. #endif
  57. return 0;
  58. }
  59. uint32_t av_crc(const AVCRC *ctx, uint32_t crc, const uint8_t *buffer, size_t length){
  60. const uint8_t *end= buffer+length;
  61. #ifndef CONFIG_SMALL
  62. if(!ctx[256])
  63. while(buffer<end-3){
  64. crc ^= le2me_32(*(uint32_t*)buffer); buffer+=4;
  65. crc = ctx[3*256 + ( crc &0xFF)]
  66. ^ctx[2*256 + ((crc>>8 )&0xFF)]
  67. ^ctx[1*256 + ((crc>>16)&0xFF)]
  68. ^ctx[0*256 + ((crc>>24) )];
  69. }
  70. #endif
  71. while(buffer<end)
  72. crc = ctx[((uint8_t)crc) ^ *buffer++] ^ (crc >> 8);
  73. return crc;
  74. }
  75. #ifdef TEST
  76. #undef printf
  77. main(){
  78. uint8_t buf[1999];
  79. int i;
  80. int p[4][4]={{1, 32, 0xedb88320L, 0x3D5CDD04},
  81. {0, 32, 0x04c11db7L, 0xC0F5BAE0},
  82. {0, 16, 0x8005 , 0x1FBB },
  83. {0, 8, 0x07 , 0xE3 },};
  84. AVCRC ctx[1 ? 1024:257];
  85. for(i=0; i<sizeof(buf); i++)
  86. buf[i]= i+i*i;
  87. for(i=0; i<4; i++){
  88. av_crc_init(ctx, p[i][0], p[i][1], p[i][2], sizeof(ctx));
  89. printf("crc %08X =%X\n", p[i][2], av_crc(ctx, 0, buf, sizeof(buf)));
  90. }
  91. }
  92. #endif