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
36af2035
Commit
36af2035
authored
13 years ago
by
Paul Wilkins
Browse files
Options
Download
Patches
Plain Diff
Merge Exact Quant
Change-Id: Id2412a7f24a7c1016ec9fc3b9b0fbd16871f374a
parent
475d5d56
v1.14.0-linphone
1.4.X
experimental
feature/update_to_v1.9.0-linphone
feature/uwp_nuget
forest
frame_parallel
highbitdepth
indianrunnerduck
javanwhistlingduck
khakicampbell
linphone
linphone-android
linphone-old
longtailedduck
m29-baseline
m31-baseline
m49-2623
m52-2743
m54-2840
m56-2924
m66-3359
m68-3440
mandarinduck
mcw
mcw2
nextgen
nextgenv2
pcs-2013
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
stable-vp9-decoder
v1.12.0-linphone
v1.6.1_linphone
v1.7.0-linphone
v1.9.0-linphone
vp9-preview
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
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
vp8/encoder/quantize.c
+0
-66
vp8/encoder/quantize.c
with
0 additions
and
66 deletions
vp8/encoder/quantize.c
+
0
−
66
View file @
36af2035
...
@@ -22,7 +22,6 @@
...
@@ -22,7 +22,6 @@
extern
int
enc_debug
;
extern
int
enc_debug
;
#endif
#endif
#define EXACT_QUANT
void
vp8_fast_quantize_b_c
(
BLOCK
*
b
,
BLOCKD
*
d
)
void
vp8_fast_quantize_b_c
(
BLOCK
*
b
,
BLOCKD
*
d
)
{
{
int
i
,
rc
,
eob
;
int
i
,
rc
,
eob
;
...
@@ -58,9 +57,6 @@ void vp8_fast_quantize_b_c(BLOCK *b, BLOCKD *d)
...
@@ -58,9 +57,6 @@ void vp8_fast_quantize_b_c(BLOCK *b, BLOCKD *d)
d
->
eob
=
eob
+
1
;
d
->
eob
=
eob
+
1
;
}
}
#ifdef EXACT_QUANT
void
vp8_regular_quantize_b
(
BLOCK
*
b
,
BLOCKD
*
d
)
void
vp8_regular_quantize_b
(
BLOCK
*
b
,
BLOCKD
*
d
)
{
{
int
i
,
rc
,
eob
;
int
i
,
rc
,
eob
;
...
@@ -173,64 +169,6 @@ void vp8_strict_quantize_b(BLOCK *b, BLOCKD *d)
...
@@ -173,64 +169,6 @@ void vp8_strict_quantize_b(BLOCK *b, BLOCKD *d)
d
->
eob
=
eob
+
1
;
d
->
eob
=
eob
+
1
;
}
}
#else
void
vp8_regular_quantize_b
(
BLOCK
*
b
,
BLOCKD
*
d
)
{
int
i
,
rc
,
eob
;
int
zbin
;
int
x
,
y
,
z
,
sz
;
short
*
zbin_boost_ptr
=
b
->
zrun_zbin_boost
;
short
*
coeff_ptr
=
b
->
coeff
;
short
*
zbin_ptr
=
b
->
zbin
;
short
*
round_ptr
=
b
->
round
;
short
*
quant_ptr
=
b
->
quant
;
short
*
qcoeff_ptr
=
d
->
qcoeff
;
short
*
dqcoeff_ptr
=
d
->
dqcoeff
;
short
*
dequant_ptr
=
d
->
dequant
;
short
zbin_oq_value
=
b
->
zbin_extra
;
vpx_memset
(
qcoeff_ptr
,
0
,
32
);
vpx_memset
(
dqcoeff_ptr
,
0
,
32
);
eob
=
-
1
;
for
(
i
=
0
;
i
<
16
;
i
++
)
{
rc
=
vp8_default_zig_zag1d
[
i
];
z
=
coeff_ptr
[
rc
];
//if ( i == 0 )
// zbin = zbin_ptr[rc] + *zbin_boost_ptr + zbin_oq_value/2;
//else
zbin
=
zbin_ptr
[
rc
]
+
*
zbin_boost_ptr
+
zbin_oq_value
;
zbin_boost_ptr
++
;
sz
=
(
z
>>
31
);
// sign of z
x
=
(
z
^
sz
)
-
sz
;
// x = abs(z)
if
(
x
>=
zbin
)
{
y
=
((
x
+
round_ptr
[
rc
])
*
quant_ptr
[
rc
])
>>
16
;
// quantize (x)
x
=
(
y
^
sz
)
-
sz
;
// get the sign back
qcoeff_ptr
[
rc
]
=
x
;
// write to destination
dqcoeff_ptr
[
rc
]
=
x
*
dequant_ptr
[
rc
];
// dequantized value
if
(
y
)
{
eob
=
i
;
// last nonzero coeffs
zbin_boost_ptr
=
&
b
->
zrun_zbin_boost
[
0
];
// reset zero runlength
}
}
}
d
->
eob
=
eob
+
1
;
}
#endif
//EXACT_QUANT
void
vp8_quantize_mby_c
(
MACROBLOCK
*
x
)
void
vp8_quantize_mby_c
(
MACROBLOCK
*
x
)
{
{
int
i
;
int
i
;
...
@@ -668,8 +606,6 @@ void vp8_fast_quantize_b_pair_c(BLOCK *b1, BLOCK *b2, BLOCKD *d1, BLOCKD *d2)
...
@@ -668,8 +606,6 @@ void vp8_fast_quantize_b_pair_c(BLOCK *b1, BLOCK *b2, BLOCKD *d1, BLOCKD *d2)
}
}
#define EXACT_QUANT
#ifdef EXACT_QUANT
static
void
invert_quant
(
int
improved_quant
,
short
*
quant
,
static
void
invert_quant
(
int
improved_quant
,
short
*
quant
,
unsigned
char
*
shift
,
short
d
)
unsigned
char
*
shift
,
short
d
)
{
{
...
@@ -767,8 +703,6 @@ void vp8cx_init_quantizer(VP8_COMP *cpi)
...
@@ -767,8 +703,6 @@ void vp8cx_init_quantizer(VP8_COMP *cpi)
}
}
}
}
}
}
#endif
void
vp8cx_mb_init_quantizer
(
VP8_COMP
*
cpi
,
MACROBLOCK
*
x
)
void
vp8cx_mb_init_quantizer
(
VP8_COMP
*
cpi
,
MACROBLOCK
*
x
)
{
{
...
...
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