Rename daala_read_tree_cdf() to daala_read_symbol().
Change-Id: I35f85bad88c637cea62577c546cdd5ced0e21bd6
This commit is contained in:
Родитель
abf6fb9967
Коммит
45741e9351
|
@ -140,7 +140,7 @@ static INLINE int aom_read_symbol(aom_reader *r, const aom_cdf_prob *cdf,
|
||||||
static INLINE int aom_read_tree_cdf(aom_reader *r, const uint16_t *cdf,
|
static INLINE int aom_read_tree_cdf(aom_reader *r, const uint16_t *cdf,
|
||||||
int nsymbs) {
|
int nsymbs) {
|
||||||
#if CONFIG_DAALA_EC
|
#if CONFIG_DAALA_EC
|
||||||
return daala_read_tree_cdf(r, cdf, nsymbs);
|
return daala_read_symbol(r, cdf, nsymbs);
|
||||||
#else
|
#else
|
||||||
(void)r;
|
(void)r;
|
||||||
(void)cdf;
|
(void)cdf;
|
||||||
|
|
|
@ -66,8 +66,8 @@ static INLINE int daala_read_tree_bits(daala_reader *r,
|
||||||
return -i;
|
return -i;
|
||||||
}
|
}
|
||||||
|
|
||||||
static INLINE int daala_read_tree_cdf(daala_reader *r, const uint16_t *cdf,
|
static INLINE int daala_read_symbol(daala_reader *r, const uint16_t *cdf,
|
||||||
int nsymbs) {
|
int nsymbs) {
|
||||||
return od_ec_decode_cdf_q15(&r->ec, cdf, nsymbs, "aom");
|
return od_ec_decode_cdf_q15(&r->ec, cdf, nsymbs, "aom");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче