Esempio n. 1
0
static void intra_stats_ctx_init(intra_stats_ctx *_this){
  _this->n=0;
  intra_stats_init(&_this->gb_vp8);
  intra_stats_init(&_this->gb_od);
  intra_stats_init(&_this->st_vp8);
  intra_stats_init(&_this->st_od);
}
Esempio n. 2
0
static void intra_stats_ctx_init(intra_stats_ctx *_this){
  _this->n=0;
  intra_stats_init(&_this->gb_vp8,B_SZ_LOG);
  intra_stats_init(&_this->gb_od,B_SZ_LOG);
  intra_stats_init(&_this->st_vp8,B_SZ_LOG);
  intra_stats_init(&_this->st_od,B_SZ_LOG);
}
Esempio n. 3
0
static void cfl_stats_ctx_init(cfl_stats_ctx *_this){
  int i;
  _this->n=0;
  for (i=0;i<2;i++) {
    intra_stats_init(&_this->gb_fdp[i],B_SZ_LOG-1);
    intra_stats_init(&_this->gb_cfl[i],B_SZ_LOG-1);
    intra_stats_init(&_this->st_fdp[i],B_SZ_LOG-1);
    intra_stats_init(&_this->st_cfl[i],B_SZ_LOG-1);
  }
}