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
c2a8d8b5
Commit
c2a8d8b5
authored
14 years ago
by
Yaowu Xu
Committed by
Code Review
14 years ago
Browse files
Options
Download
Plain Diff
Merge "Enable the switch between two versions of quantizer"
parents
062e6c18
f95c80b6
v1.14.0-linphone
1.4.X
aylesbury
bali
cayuga
eider
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/atna/dec_sem_sync
sandbox/awatry/initial_opencl_implementation
sandbox/debargha/playground
sandbox/hkuang/frame_parallel
sandbox/hkuang@google.com/decode
sandbox/hlundin/error-concealment
sandbox/holmer/error-concealment
sandbox/jimbankoski@google.com/proposed-aom
sandbox/jingning@google.com/decoder_test_suite
sandbox/jingning@google.com/experimental
sandbox/jkoleszar/cached-multibit
sandbox/jkoleszar/experimental-knobs
sandbox/jkoleszar/new-rate-control
sandbox/jkoleszar/new-rtcd
sandbox/jkoleszar/reuse-modemv
sandbox/jkoleszar/use-memcpy
sandbox/jzern@google.com/test
sandbox/slavarnway/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
v1.2.0
v1.1.0
v1.0.0
v0.9.7
v0.9.7-p1
v0.9.6
v0.9.5
v0.9.2
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
vp8/encoder/encodeframe.c
+67
-2
vp8/encoder/encodeframe.c
vp8/encoder/quantize.c
+99
-1
vp8/encoder/quantize.c
with
166 additions
and
3 deletions
vp8/encoder/encodeframe.c
+
67
−
2
View file @
c2a8d8b5
...
...
@@ -102,7 +102,8 @@ static const int qzbin_factors[129] =
80
,
80
,
80
,
80
,
80
,
80
,
80
,
80
,
80
,
};
//#define EXACT_QUANT
#ifdef EXACT_QUANT
static
void
vp8cx_invert_quant
(
short
*
quant
,
short
*
shift
,
short
d
)
{
unsigned
t
;
...
...
@@ -184,7 +185,71 @@ void vp8cx_init_quantizer(VP8_COMP *cpi)
}
}
}
#else
void
vp8cx_init_quantizer
(
VP8_COMP
*
cpi
)
{
int
r
,
c
;
int
i
;
int
quant_val
;
int
Q
;
int
zbin_boost
[
16
]
=
{
0
,
0
,
8
,
10
,
12
,
14
,
16
,
20
,
24
,
28
,
32
,
36
,
40
,
44
,
44
,
44
};
for
(
Q
=
0
;
Q
<
QINDEX_RANGE
;
Q
++
)
{
// dc values
quant_val
=
vp8_dc_quant
(
Q
,
cpi
->
common
.
y1dc_delta_q
);
cpi
->
Y1quant
[
Q
][
0
][
0
]
=
(
1
<<
16
)
/
quant_val
;
cpi
->
Y1zbin
[
Q
][
0
][
0
]
=
((
qzbin_factors
[
Q
]
*
quant_val
)
+
64
)
>>
7
;
cpi
->
Y1round
[
Q
][
0
][
0
]
=
(
qrounding_factors
[
Q
]
*
quant_val
)
>>
7
;
cpi
->
common
.
Y1dequant
[
Q
][
0
][
0
]
=
quant_val
;
cpi
->
zrun_zbin_boost_y1
[
Q
][
0
]
=
(
quant_val
*
zbin_boost
[
0
])
>>
7
;
quant_val
=
vp8_dc2quant
(
Q
,
cpi
->
common
.
y2dc_delta_q
);
cpi
->
Y2quant
[
Q
][
0
][
0
]
=
(
1
<<
16
)
/
quant_val
;
cpi
->
Y2zbin
[
Q
][
0
][
0
]
=
((
qzbin_factors
[
Q
]
*
quant_val
)
+
64
)
>>
7
;
cpi
->
Y2round
[
Q
][
0
][
0
]
=
(
qrounding_factors
[
Q
]
*
quant_val
)
>>
7
;
cpi
->
common
.
Y2dequant
[
Q
][
0
][
0
]
=
quant_val
;
cpi
->
zrun_zbin_boost_y2
[
Q
][
0
]
=
(
quant_val
*
zbin_boost
[
0
])
>>
7
;
quant_val
=
vp8_dc_uv_quant
(
Q
,
cpi
->
common
.
uvdc_delta_q
);
cpi
->
UVquant
[
Q
][
0
][
0
]
=
(
1
<<
16
)
/
quant_val
;
cpi
->
UVzbin
[
Q
][
0
][
0
]
=
((
qzbin_factors
[
Q
]
*
quant_val
)
+
64
)
>>
7
;;
cpi
->
UVround
[
Q
][
0
][
0
]
=
(
qrounding_factors
[
Q
]
*
quant_val
)
>>
7
;
cpi
->
common
.
UVdequant
[
Q
][
0
][
0
]
=
quant_val
;
cpi
->
zrun_zbin_boost_uv
[
Q
][
0
]
=
(
quant_val
*
zbin_boost
[
0
])
>>
7
;
// all the ac values = ;
for
(
i
=
1
;
i
<
16
;
i
++
)
{
int
rc
=
vp8_default_zig_zag1d
[
i
];
r
=
(
rc
>>
2
);
c
=
(
rc
&
3
);
quant_val
=
vp8_ac_yquant
(
Q
);
cpi
->
Y1quant
[
Q
][
r
][
c
]
=
(
1
<<
16
)
/
quant_val
;
cpi
->
Y1zbin
[
Q
][
r
][
c
]
=
((
qzbin_factors
[
Q
]
*
quant_val
)
+
64
)
>>
7
;
cpi
->
Y1round
[
Q
][
r
][
c
]
=
(
qrounding_factors
[
Q
]
*
quant_val
)
>>
7
;
cpi
->
common
.
Y1dequant
[
Q
][
r
][
c
]
=
quant_val
;
cpi
->
zrun_zbin_boost_y1
[
Q
][
i
]
=
(
quant_val
*
zbin_boost
[
i
])
>>
7
;
quant_val
=
vp8_ac2quant
(
Q
,
cpi
->
common
.
y2ac_delta_q
);
cpi
->
Y2quant
[
Q
][
r
][
c
]
=
(
1
<<
16
)
/
quant_val
;
cpi
->
Y2zbin
[
Q
][
r
][
c
]
=
((
qzbin_factors
[
Q
]
*
quant_val
)
+
64
)
>>
7
;
cpi
->
Y2round
[
Q
][
r
][
c
]
=
(
qrounding_factors
[
Q
]
*
quant_val
)
>>
7
;
cpi
->
common
.
Y2dequant
[
Q
][
r
][
c
]
=
quant_val
;
cpi
->
zrun_zbin_boost_y2
[
Q
][
i
]
=
(
quant_val
*
zbin_boost
[
i
])
>>
7
;
quant_val
=
vp8_ac_uv_quant
(
Q
,
cpi
->
common
.
uvac_delta_q
);
cpi
->
UVquant
[
Q
][
r
][
c
]
=
(
1
<<
16
)
/
quant_val
;
cpi
->
UVzbin
[
Q
][
r
][
c
]
=
((
qzbin_factors
[
Q
]
*
quant_val
)
+
64
)
>>
7
;
cpi
->
UVround
[
Q
][
r
][
c
]
=
(
qrounding_factors
[
Q
]
*
quant_val
)
>>
7
;
cpi
->
common
.
UVdequant
[
Q
][
r
][
c
]
=
quant_val
;
cpi
->
zrun_zbin_boost_uv
[
Q
][
i
]
=
(
quant_val
*
zbin_boost
[
i
])
>>
7
;
}
}
}
#endif
void
vp8cx_mb_init_quantizer
(
VP8_COMP
*
cpi
,
MACROBLOCK
*
x
)
{
int
i
;
...
...
This diff is collapsed.
Click to expand it.
vp8/encoder/quantize.c
+
99
−
1
View file @
c2a8d8b5
...
...
@@ -16,6 +16,8 @@
#include
"entropy.h"
#include
"predictdc.h"
//#define EXACT_QUANT
#ifdef EXACT_QUANT
void
vp8_fast_quantize_b_c
(
BLOCK
*
b
,
BLOCKD
*
d
)
{
int
i
,
rc
,
eob
;
...
...
@@ -116,7 +118,103 @@ void vp8_regular_quantize_b(BLOCK *b, BLOCKD *d)
d
->
eob
=
eob
+
1
;
}
#else
void
vp8_fast_quantize_b_c
(
BLOCK
*
b
,
BLOCKD
*
d
)
{
int
i
,
rc
,
eob
;
int
zbin
;
int
x
,
y
,
z
,
sz
;
short
*
coeff_ptr
=
&
b
->
coeff
[
0
];
short
*
zbin_ptr
=
&
b
->
zbin
[
0
][
0
];
short
*
round_ptr
=
&
b
->
round
[
0
][
0
];
short
*
quant_ptr
=
&
b
->
quant
[
0
][
0
];
short
*
qcoeff_ptr
=
d
->
qcoeff
;
short
*
dqcoeff_ptr
=
d
->
dqcoeff
;
short
*
dequant_ptr
=
&
d
->
dequant
[
0
][
0
];
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
];
zbin
=
zbin_ptr
[
rc
]
;
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
}
}
}
d
->
eob
=
eob
+
1
;
}
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
[
0
];
short
*
coeff_ptr
=
&
b
->
coeff
[
0
];
short
*
zbin_ptr
=
&
b
->
zbin
[
0
][
0
];
short
*
round_ptr
=
&
b
->
round
[
0
][
0
];
short
*
quant_ptr
=
&
b
->
quant
[
0
][
0
];
short
*
qcoeff_ptr
=
d
->
qcoeff
;
short
*
dqcoeff_ptr
=
d
->
dqcoeff
;
short
*
dequant_ptr
=
&
d
->
dequant
[
0
][
0
];
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
void
vp8_quantize_mby
(
MACROBLOCK
*
x
)
{
int
i
;
...
...
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