diff options
| author | Antonin Descampe <antonin@gmail.com> | 2011-01-23 18:17:00 +0000 |
|---|---|---|
| committer | Antonin Descampe <antonin@gmail.com> | 2011-01-23 18:17:00 +0000 |
| commit | 066bda52c0eb385f095212574a114122de5c16bb (patch) | |
| tree | 94dba905c9ac1a5de983c8bec6e885f6db1302de | |
| parent | 2514c5b55072c09babf94ec33838eb3e9988b93c (diff) | |
move KK definition from rs.h to rs.c to prevent duplicate symbol error when building jpwl with autotools
| -rw-r--r-- | CHANGES | 5 | ||||
| -rw-r--r-- | jpwl/rs.c | 3 | ||||
| -rw-r--r-- | jpwl/rs.h | 5 |
3 files changed, 8 insertions, 5 deletions
@@ -5,7 +5,10 @@ What's New for OpenJPEG ! : changed + : added -January 18, 2001 +January 23, 2011 +* [antonin] move 'KK' definition from rs.h to rs.c to prevent duplicate symbol error when building jpwl with autotools. + +January 18, 2011 ! [rdieter] cmake: SOVERSION change to 1 (from 1.4) to match auto-tools January 17, 2011 @@ -73,6 +73,9 @@ */ typedef int gf; +/* KK = number of information symbols */ +static int KK; + /* Primitive polynomials - see Lin & Costello, Appendix A, * and Lee & Messerschmitt, p. 453. */ @@ -55,11 +55,8 @@ * each error counting as two erasures. */ #define MM 8 /* RS code over GF(2**MM) - change to suit */ -//static int KK; -int KK; -/* Original code */ -/*#define KK 239*/ /* KK = number of information symbols */ +/* KK defined in rs.c */ #define NN ((1 << MM) - 1) |
