| 638 | } |
| 639 | |
| 640 | int bits_init(BitsEncoder &bits, FILE *out) { |
| 641 | bits.m_outFile = out; |
| 642 | bits.m_bitData = 0; |
| 643 | bits.m_bitCount = 0; |
| 644 | return 1; |
| 645 | } |
| 646 | |
| 647 | int SetupEncoder(Encoder &enc, int someVal, float std_lo_filter[], float std_hi_filter[], int8_t levels, |
| 648 | int samples_per_subband) { |