Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
70109028
Commit
70109028
authored
Oct 11, 2017
by
Alexander Bokov
Committed by
Hui Su
Oct 13, 2017
Browse files
Support txmg in predict_skip_flag_8bit()
Change-Id: Ic701ef1439d6d1d3d7801bb3ec4aebe9ad6e3acc
parent
82e9172f
Changes
1
Hide whitespace changes
Inline
Side-by-side
av1/encoder/rdopt.c
View file @
70109028
...
...
@@ -5366,7 +5366,12 @@ static int predict_skip_flag_8bit(const MACROBLOCK *x, BLOCK_SIZE bsize) {
#endif
param.bd = 8;
param.lossless = 0;
#if CONFIG_TXMG
av1_highbd_fwd_txfm(p->src_diff, DCT_coefs, bw, ¶m);
#else // CONFIG_TXMG
av1_fwd_txfm(p->src_diff, DCT_coefs, bw, ¶m);
#endif // CONFIG_TXMG
uint32_t dc = (uint32_t)av1_dc_quant(x->qindex, 0, AOM_BITS_8);
uint32_t ac = (uint32_t)av1_ac_quant(x->qindex, 0, AOM_BITS_8);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment