| 103 | #include "arithmeticmodel.hpp" |
| 104 | |
| 105 | ArithmeticEncoder::ArithmeticEncoder() |
| 106 | { |
| 107 | outstream = 0; |
| 108 | base = 0; |
| 109 | endbyte = 0; |
| 110 | length = 0; |
| 111 | outbyte = 0; |
| 112 | |
| 113 | outbuffer = (U8*)malloc_las(sizeof(U8) * 2 * AC_BUFFER_SIZE); |
| 114 | endbuffer = outbuffer + 2 * AC_BUFFER_SIZE; |
| 115 | } |
| 116 | |
| 117 | ArithmeticEncoder::~ArithmeticEncoder() |
| 118 | { |
nothing calls this directly
no test coverage detected