#include <iostream>#include <stdio.h>Defines | |
| #define | SEGMENT_SIZE 207 |
| #define | INPUT_SIZE (SEGMENT_SIZE * 12) |
| #define | DIBITS_PER_BYTE 4 |
| #define | EXTRAS (4 * 12) |
| #define | SYMBOLS_OUT ((INPUT_SIZE * DIBITS_PER_BYTE) + EXTRAS) |
| #define | SEGOF(x) ( (x) / ((SEGMENT_SIZE+1) * DIBITS_PER_BYTE)) |
| #define | SYMOF(x) (((x) % ((SEGMENT_SIZE+1) * DIBITS_PER_BYTE))-4) |
| #define | ENCODERS 12 |
| #define | ENCODER_SEG_BUMP 4 |
| #define | BIT_PTR(int, shif) (((int) << 3) | ((shif) & 0x7)) |
Functions | |
| int | build_decode_structures (char *fileout) |
| int | usage () |
| int | main (int argc, char **argv) |
Variables | |
| int | debug_dec = 0 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
||||||||||||
|
|
|
|
|
|
|
|
1.3.8