Skip to content
GitLab
Menu
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
5d693481
Commit
5d693481
authored
Mar 08, 2017
by
Jingning Han
Browse files
Add TODO comments in av1_quantize.c
Change-Id: I6db698fc5f9b57071e363c595cb076f6797b722f
parent
ff0da2b4
Changes
1
Hide whitespace changes
Inline
Side-by-side
av1/encoder/av1_quantize.c
View file @
5d693481
...
...
@@ -453,6 +453,8 @@ void av1_quantize_fp_facade(const tran_low_t *coeff_ptr, intptr_t n_coeffs,
switch
(
qparam
->
log_scale
)
{
case
0
:
if
(
n_coeffs
<
16
)
{
// TODO(jingning): Need SIMD implementation for smaller block size
// quantization.
av1_quantize_fp_c
(
coeff_ptr
,
n_coeffs
,
skip_block
,
p
->
zbin
,
p
->
round_fp
,
p
->
quant_fp
,
p
->
quant_shift
,
qcoeff_ptr
,
dqcoeff_ptr
,
pd
->
dequant
,
eob_ptr
,
sc
->
scan
,
sc
->
iscan
...
...
@@ -731,6 +733,8 @@ void av1_highbd_quantize_fp_facade(const tran_low_t *coeff_ptr,
#endif // CONFIG_AOM_QM
if
(
n_coeffs
<
16
)
{
// TODO(jingning): Need SIMD implementation for smaller block size
// quantization.
av1_highbd_quantize_fp_c
(
coeff_ptr
,
n_coeffs
,
skip_block
,
p
->
zbin
,
p
->
round_fp
,
p
->
quant_fp
,
p
->
quant_shift
,
qcoeff_ptr
,
dqcoeff_ptr
,
pd
->
dequant
,
eob_ptr
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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