Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
external
libvpx
Commits
1bea58e4
Commit
1bea58e4
authored
11 years ago
by
Dmitry Kovalev
Committed by
Gerrit Code Review
11 years ago
Browse files
Options
Download
Plain Diff
Merge "Adding const to vp9_quantize_b_{32x32,} parameters."
parents
27b8040c
065972f9
v1.14.0-linphone
1.4.X
feature/update_to_v1.9.0-linphone
feature/uwp_nuget
forest
frame_parallel
highbitdepth
indianrunnerduck
javanwhistlingduck
khakicampbell
linphone
linphone-android
linphone-old
longtailedduck
m49-2623
m52-2743
m54-2840
m56-2924
m66-3359
m68-3440
mandarinduck
mcw
mcw2
nextgen
nextgenv2
playground
sandbox/Jingning/experimental
sandbox/Jingning/transcode
sandbox/Jingning/vpx
sandbox/aconverse@google.com/ansbench
sandbox/debargha/playground
sandbox/hkuang/frame_parallel
sandbox/hkuang@google.com/decode
sandbox/jimbankoski@google.com/proposed-aom
sandbox/jingning@google.com/decoder_test_suite
sandbox/jingning@google.com/experimental
sandbox/jzern@google.com/test
sandbox/wangch@google.com/vp9
sandbox/yaowu@google.com/mergeaom
v1.12.0-linphone
v1.6.1_linphone
v1.7.0-linphone
v1.9.0-linphone
v1.9.0
v1.9.0-rc1
v1.8.2
v1.8.1
v1.8.0
v1.7.0
v1.6.1
v1.6.0
v1.5.0
v1.4.0
v1.3.0
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
vp9/common/vp9_rtcd_defs.sh
+2
-2
vp9/common/vp9_rtcd_defs.sh
vp9/encoder/vp9_quantize.c
+15
-12
vp9/encoder/vp9_quantize.c
with
17 additions
and
14 deletions
vp9/common/vp9_rtcd_defs.sh
+
2
−
2
View file @
1bea58e4
...
@@ -672,10 +672,10 @@ specialize vp9_block_error $sse2_x86inc
...
@@ -672,10 +672,10 @@ specialize vp9_block_error $sse2_x86inc
prototype void vp9_subtract_block
"int rows, int cols, int16_t *diff_ptr, ptrdiff_t diff_stride, const uint8_t *src_ptr, ptrdiff_t src_stride, const uint8_t *pred_ptr, ptrdiff_t pred_stride"
prototype void vp9_subtract_block
"int rows, int cols, int16_t *diff_ptr, ptrdiff_t diff_stride, const uint8_t *src_ptr, ptrdiff_t src_stride, const uint8_t *pred_ptr, ptrdiff_t pred_stride"
specialize vp9_subtract_block
$sse2_x86inc
specialize vp9_subtract_block
$sse2_x86inc
prototype void vp9_quantize_b
"int16_t *coeff_ptr, intptr_t n_coeffs, int skip_block, int16_t *zbin_ptr, int16_t *round_ptr, int16_t *quant_ptr, int16_t *quant_shift_ptr, int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr, int16_t *dequant_ptr, int zbin_oq_value, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan"
prototype void vp9_quantize_b
"
const
int16_t *coeff_ptr, intptr_t n_coeffs, int skip_block,
const
int16_t *zbin_ptr,
const
int16_t *round_ptr,
const
int16_t *quant_ptr,
const
int16_t *quant_shift_ptr, int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr,
const
int16_t *dequant_ptr, int zbin_oq_value, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan"
specialize vp9_quantize_b
$ssse3_x86_64
specialize vp9_quantize_b
$ssse3_x86_64
prototype void vp9_quantize_b_32x32
"int16_t *coeff_ptr, intptr_t n_coeffs, int skip_block, int16_t *zbin_ptr, int16_t *round_ptr, int16_t *quant_ptr, int16_t *quant_shift_ptr, int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr, int16_t *dequant_ptr, int zbin_oq_value, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan"
prototype void vp9_quantize_b_32x32
"
const
int16_t *coeff_ptr, intptr_t n_coeffs, int skip_block,
const
int16_t *zbin_ptr,
const
int16_t *round_ptr,
const
int16_t *quant_ptr,
const
int16_t *quant_shift_ptr, int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr,
const
int16_t *dequant_ptr, int zbin_oq_value, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan"
specialize vp9_quantize_b_32x32
$ssse3_x86_64
specialize vp9_quantize_b_32x32
$ssse3_x86_64
#
#
...
...
This diff is collapsed.
Click to expand it.
vp9/encoder/vp9_quantize.c
+
15
−
12
View file @
1bea58e4
...
@@ -22,12 +22,14 @@
...
@@ -22,12 +22,14 @@
extern
int
enc_debug
;
extern
int
enc_debug
;
#endif
#endif
void
vp9_quantize_b_c
(
int16_t
*
coeff_ptr
,
intptr_t
n_coeffs
,
int
skip_block
,
void
vp9_quantize_b_c
(
const
int16_t
*
coeff_ptr
,
intptr_t
n_coeffs
,
int16_t
*
zbin_ptr
,
int16_t
*
round_ptr
,
int16_t
*
quant_ptr
,
int
skip_block
,
int16_t
*
quant_shift_ptr
,
int16_t
*
qcoeff_ptr
,
const
int16_t
*
zbin_ptr
,
const
int16_t
*
round_ptr
,
int16_t
*
dqcoeff_ptr
,
int16_t
*
dequant_ptr
,
const
int16_t
*
quant_ptr
,
const
int16_t
*
quant_shift_ptr
,
int
zbin_oq_value
,
uint16_t
*
eob_ptr
,
const
int16_t
*
scan
,
int16_t
*
qcoeff_ptr
,
int16_t
*
dqcoeff_ptr
,
const
int16_t
*
iscan
)
{
const
int16_t
*
dequant_ptr
,
int
zbin_oq_value
,
uint16_t
*
eob_ptr
,
const
int16_t
*
scan
,
const
int16_t
*
iscan
)
{
int
i
,
rc
,
eob
;
int
i
,
rc
,
eob
;
int
zbins
[
2
],
nzbins
[
2
],
zbin
;
int
zbins
[
2
],
nzbins
[
2
],
zbin
;
int
x
,
y
,
z
,
sz
;
int
x
,
y
,
z
,
sz
;
...
@@ -86,14 +88,15 @@ void vp9_quantize_b_c(int16_t *coeff_ptr, intptr_t n_coeffs, int skip_block,
...
@@ -86,14 +88,15 @@ void vp9_quantize_b_c(int16_t *coeff_ptr, intptr_t n_coeffs, int skip_block,
*
eob_ptr
=
eob
+
1
;
*
eob_ptr
=
eob
+
1
;
}
}
void
vp9_quantize_b_32x32_c
(
int16_t
*
coeff_ptr
,
intptr_t
n_coeffs
,
void
vp9_quantize_b_32x32_c
(
const
int16_t
*
coeff_ptr
,
intptr_t
n_coeffs
,
int
skip_block
,
int
skip_block
,
int16_t
*
zbin_ptr
,
int16_t
*
round_ptr
,
const
int16_t
*
zbin_ptr
,
const
int16_t
*
round_ptr
,
int16_t
*
quant_ptr
,
int16_t
*
quant_shift_ptr
,
const
int16_t
*
quant_ptr
,
const
int16_t
*
quant_shift_ptr
,
int16_t
*
qcoeff_ptr
,
int16_t
*
dqcoeff_ptr
,
int16_t
*
qcoeff_ptr
,
int16_t
*
dqcoeff_ptr
,
int16_t
*
dequant_ptr
,
int
zbin_oq_value
,
const
int16_t
*
dequant_ptr
,
u
int
16_t
*
eob_ptr
,
const
int16_t
*
scan
,
int
zbin_oq_value
,
u
int16_t
*
eob_ptr
,
const
int16_t
*
iscan
)
{
const
int16_t
*
scan
,
const
int16_t
*
iscan
)
{
int
i
,
rc
,
eob
;
int
i
,
rc
,
eob
;
int
zbins
[
2
],
nzbins
[
2
];
int
zbins
[
2
],
nzbins
[
2
];
int
x
,
y
,
z
,
sz
;
int
x
,
y
,
z
,
sz
;
...
...
This diff is collapsed.
Click to expand it.
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!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets