| 73 | #include <stdlib.h> |
| 74 | |
| 75 | ArithmeticModel::ArithmeticModel(U32 symbols, BOOL compress) |
| 76 | { |
| 77 | this->symbols = symbols; |
| 78 | this->compress = compress; |
| 79 | distribution = 0; |
| 80 | decoder_table = 0; |
| 81 | last_symbol = 0; |
| 82 | symbols_until_update = 0; |
| 83 | symbol_count = 0; |
| 84 | table_shift = 0; |
| 85 | table_size = 0; |
| 86 | total_count = 0; |
| 87 | update_cycle = 0; |
| 88 | } |
| 89 | |
| 90 | ArithmeticModel::~ArithmeticModel() |
| 91 | { |
nothing calls this directly
no outgoing calls
no test coverage detected