| 7 | // for samples and ideas allowed to make Reed-Solomon codec more efficient. |
| 8 | |
| 9 | RSCoder16::RSCoder16() |
| 10 | { |
| 11 | Decoding=false; |
| 12 | ND=NR=NE=0; |
| 13 | ValidFlags=NULL; |
| 14 | MX=NULL; |
| 15 | DataLog=NULL; |
| 16 | DataLogSize=0; |
| 17 | |
| 18 | gfInit(); |
| 19 | } |
| 20 | |
| 21 | |
| 22 | RSCoder16::~RSCoder16() |
nothing calls this directly
no outgoing calls
no test coverage detected