Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bitrenc.h « libcelt - gitlab.com/quite/celt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 77d0b5da643187fc24846cb98fa7ade7e4bbe967 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#if !defined(_bitrenc_H)
# define _bitrenc_H (1)
# include "bitree.h"

/*Encoder-specific functions for Binary Indexed Trees.
  See bitree.h for more detailed documentation.*/

/*Updates the frequency of a given symbol.
  _sz:  The size of the table.
  _sym: The symbol to update.
  _val: The amount to add to this symbol's frequency.*/
void ec_bitree_update(unsigned *_this,int _sz,int _sym,int _val);

#endif