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.

128 lines
4.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. #if LIBAVUTIL_VERSION_INT < (50<<16)
  23. AVCRC *av_crcEDB88320;
  24. AVCRC *av_crc04C11DB7;
  25. AVCRC *av_crc8005 ;
  26. AVCRC *av_crc07 ;
  27. #else
  28. AVCRC av_crcEDB88320[257];
  29. AVCRC av_crc04C11DB7[257];
  30. AVCRC av_crc8005 [257];
  31. AVCRC av_crc07 [257];
  32. #endif
  33. /**
  34. * Inits a crc table.
  35. * @param ctx must be an array of sizeof(AVCRC)*257 or sizeof(AVCRC)*1024
  36. * @param cts_size size of ctx in bytes
  37. * @param le if 1, lowest bit represents coefficient for highest exponent
  38. * of corresponding polynomial (both for poly and actual CRC).
  39. * If 0, you must swap the crc parameter and the result of av_crc
  40. * if you need the standard representation (can be simplified in
  41. * most cases to e.g. bswap16):
  42. * bswap_32(crc << (32-bits))
  43. * @param bits number of bits for the CRC
  44. * @param poly generator polynomial without the x**bits coefficient, in the
  45. * representation as specified by le
  46. * @return <0 on failure
  47. */
  48. int av_crc_init(AVCRC *ctx, int le, int bits, uint32_t poly, int ctx_size){
  49. int i, j;
  50. uint32_t c;
  51. if (bits < 8 || bits > 32 || poly >= (1LL<<bits))
  52. return -1;
  53. if (ctx_size != sizeof(AVCRC)*257 && ctx_size != sizeof(AVCRC)*1024)
  54. return -1;
  55. for (i = 0; i < 256; i++) {
  56. if (le) {
  57. for (c = i, j = 0; j < 8; j++)
  58. c = (c>>1)^(poly & (-(c&1)));
  59. ctx[i] = c;
  60. } else {
  61. for (c = i << 24, j = 0; j < 8; j++)
  62. c = (c<<1) ^ ((poly<<(32-bits)) & (((int32_t)c)>>31) );
  63. ctx[i] = bswap_32(c);
  64. }
  65. }
  66. ctx[256]=1;
  67. #ifndef CONFIG_SMALL
  68. if(ctx_size >= sizeof(AVCRC)*1024)
  69. for (i = 0; i < 256; i++)
  70. for(j=0; j<3; j++)
  71. ctx[256*(j+1) + i]= (ctx[256*j + i]>>8) ^ ctx[ ctx[256*j + i]&0xFF ];
  72. #endif
  73. return 0;
  74. }
  75. /**
  76. * Calculate the CRC of a block
  77. * @param crc CRC of previous blocks if any or initial value for CRC.
  78. * @return CRC updated with the data from the given block
  79. *
  80. * @see av_crc_init() "le" parameter
  81. */
  82. uint32_t av_crc(const AVCRC *ctx, uint32_t crc, const uint8_t *buffer, size_t length){
  83. const uint8_t *end= buffer+length;
  84. #ifndef CONFIG_SMALL
  85. if(!ctx[256])
  86. while(buffer<end-3){
  87. crc ^= le2me_32(*(uint32_t*)buffer); buffer+=4;
  88. crc = ctx[3*256 + ( crc &0xFF)]
  89. ^ctx[2*256 + ((crc>>8 )&0xFF)]
  90. ^ctx[1*256 + ((crc>>16)&0xFF)]
  91. ^ctx[0*256 + ((crc>>24) )];
  92. }
  93. #endif
  94. while(buffer<end)
  95. crc = ctx[((uint8_t)crc) ^ *buffer++] ^ (crc >> 8);
  96. return crc;
  97. }
  98. #ifdef TEST
  99. #undef printf
  100. main(){
  101. uint8_t buf[1999];
  102. int i;
  103. int p[4][4]={{1, 32, AV_CRC_32_IEEE_LE, 0x3D5CDD04},
  104. {0, 32, AV_CRC_32_IEEE , 0xC0F5BAE0},
  105. {0, 16, AV_CRC_16 , 0x1FBB },
  106. {0, 8, AV_CRC_8_ATM , 0xE3 },};
  107. AVCRC ctx[1 ? 1024:257];
  108. for(i=0; i<sizeof(buf); i++)
  109. buf[i]= i+i*i;
  110. for(i=0; i<4; i++){
  111. av_crc_init(ctx, p[i][0], p[i][1], p[i][2], sizeof(ctx));
  112. printf("crc %08X =%X\n", p[i][2], av_crc(ctx, 0, buf, sizeof(buf)));
  113. }
  114. }
  115. #endif