I have to decode some reed solomon codes. I tried to use open source libraries for this but I'm not sure how to apply them to my specific problem.
For example this lib: https://github.com/zxing/zxing/blob/master/core/src/main/java/com/google/zxing/common/reedsolomon/GenericGF.java
Seems to support a lot of codes with a generator function like this:
x^12 + x^6 + x^5 + x^3 + 1
x^10 + x^3 + 1
But I need to support a function with coefficients like this:
2x^10 + 4x^3 + 8
Is my assumption correct that this is not supported by the library? Does anyone know a library that supports this?