ecc.h
上传用户:weiliju62
上传日期:2007-01-06
资源大小:619k
文件大小:4k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. /* compact disc reed-solomon routines
  2.  * (c) 1998 by Heiko Eissfeldt, heiko@colossus.escape.de
  3.  */
  4. #define RS_L12_BITS 8
  5. /* audio sector definitions for CIRC */
  6. #define FRAMES_PER_SECTOR 98
  7. /* user data bytes per frame */
  8. #define L1_RAW 24
  9. /* parity bytes with 8 bit */
  10. #define L1_Q   4
  11. #define L1_P   4
  12. /* audio sector Cross Interleaved Reed-Solomon Code (CIRC) encoder (layer 1) */
  13. /* adds P- and Q- parity information to audio (f2) frames. Also
  14.    optionally handles the various delays and permutations. The output with all
  15.    stages enabled can be fed into the Eight-Fourteen-Modulator.
  16.    On input: 2352 bytes of audio data is given.
  17.    On output: 3136 bytes of CIRC enriched audio data are returned.
  18.  */
  19. int do_encode_L1(unsigned char in[L1_RAW*FRAMES_PER_SECTOR],
  20. unsigned char out[(L1_RAW+L1_Q+L1_P)*FRAMES_PER_SECTOR],
  21. int delay1, int delay2, int delay3, int scramble);
  22. /* data sector definitions for RSPC */
  23. /* user data bytes per frame */
  24. #define L2_RAW (1024*2)
  25. /* parity bytes for 16 bit units */
  26. #define L2_Q   (26*2*2)
  27. #define L2_P   (43*2*2)
  28. /* known sector types */
  29. #define MODE_0 0
  30. #define MODE_1 1
  31. #define MODE_2 2
  32. #define MODE_2_FORM_1 3
  33. #define MODE_2_FORM_2 4
  34. #ifdef __cplusplus
  35. extern "C" {
  36. #endif
  37. /* set one of the MODE_* constants for subsequent data sector formatting */
  38. int set_sector_type(int st);
  39. /* get the current sector type setting for data sector formatting */
  40. int get_sector_type(void);
  41. /* data sector layer 2 Reed-Solomon Product Code encoder */
  42. /* encode the given data portion depending on sector type (see
  43.    get/set_sector_type() functions). Use the given address for the header.
  44.    The returned data is __unscrambled__ and not in F2-frame format (for that
  45.    see function scramble_L2()).
  46.    Supported sector types:
  47.      MODE_0: a 12-byte sync field, a header and 2336 zeros are returned.
  48.      MODE_1: the user data portion (2048 bytes) has to be given
  49.              at offset 16 in the inout array.
  50.              Sync-, header-, edc-, spare-, p- and q- fields will be added.
  51.      MODE_2: the user data portion (2336 bytes) has to be given
  52.              at offset 16 in the inout array.
  53.              Sync- and header- fields will be added.
  54.      MODE_2_FORM_1: the user data portion (8 bytes subheader followed
  55.                     by 2048 bytes data) has to be given at offset 16
  56.                     in the inout array.
  57.                     Sync-, header-, edc-, p- and q- fields will be added.
  58.      MODE_2_FORM_2: the user data portion (8 bytes subheader followed
  59.                     by 2324 bytes data) has to be given at offset 16
  60.                     in the inout array.
  61.                     Sync-, header- and edc- fields will be added.
  62. */
  63. int do_encode_L2(unsigned char *inout, int sectortype, unsigned address);
  64. int decode_L2_Q(unsigned char inout[4 + L2_RAW + 12 + L2_Q]);
  65. int decode_L2_P(unsigned char inout[4 + L2_RAW + 12 + L2_Q + L2_P]);
  66. unsigned int build_edc(unsigned char inout[], int from, int upto);
  67. /* generates f2 frames from otherwise fully formatted sectors (generated by
  68.    do_encode_L2()). */
  69. int scramble_L2(unsigned char *inout);
  70. #ifdef __cplusplus
  71. }
  72. #endif
  73. /* r-w sub channel definitions */
  74. #define RS_SUB_RW_BITS 6
  75. #define PACKETS_PER_SUBCHANNELFRAME 4
  76. #define LSUB_RAW 18
  77. #define LSUB_QRAW 2
  78. /* 6 bit */
  79. #define LSUB_Q 2
  80. #define LSUB_P 4
  81. #ifdef __cplusplus
  82. extern "C" {
  83. #endif
  84. /* R-W subchannel encoder */
  85. /* On input: 72 bytes packed user data, four frames with each 18 bytes.
  86.    On output: per frame: 2 bytes user data, 2 bytes Q parity, 
  87.                          16 bytes user data, 4 bytes P parity.
  88.    Options:
  89.      delay1: use low level delay line
  90.      scramble: perform low level permutations
  91.  */
  92. int do_encode_sub(unsigned char in[LSUB_RAW*PACKETS_PER_SUBCHANNELFRAME],
  93. unsigned char out[(LSUB_RAW+LSUB_Q+LSUB_P)*PACKETS_PER_SUBCHANNELFRAME],
  94. int delay1, int scramble);
  95. int do_decode_sub(unsigned char in[(LSUB_RAW+LSUB_Q+LSUB_P)*PACKETS_PER_SUBCHANNELFRAME],
  96. unsigned char out[LSUB_RAW*PACKETS_PER_SUBCHANNELFRAME],
  97. int delay1, int scramble);
  98. int decode_LSUB_Q(unsigned char inout[LSUB_QRAW + LSUB_Q]);
  99. int decode_LSUB_P(unsigned char inout[LSUB_RAW + LSUB_Q + LSUB_P]);
  100. #ifdef __cplusplus
  101. }
  102. #endif