Home | History | Annotate | Download | only in fec
      1 /* General purpose Reed-Solomon decoder for 8-bit symbols or less
      2  * Copyright 2003 Phil Karn, KA9Q
      3  * May be used under the terms of the GNU Lesser General Public License (LGPL)
      4  */
      5 
      6 #ifdef DEBUG
      7 #include <stdio.h>
      8 #endif
      9 
     10 #include <string.h>
     11 
     12 #include "fixed.h"
     13 
     14 int decode_rs_8(data_t *data, int *eras_pos, int no_eras, int pad){
     15   int retval;
     16 
     17   if(pad < 0 || pad > 222){
     18     return -1;
     19   }
     20 
     21 #include "decode_rs.h"
     22 
     23   return retval;
     24 }
     25