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
c9718556
Commit
c9718556
authored
11 years ago
by
Yaowu Xu
Committed by
Gerrit Code Review
11 years ago
Browse files
Options
Download
Plain Diff
Merge "Changed to use new intra coding calls for 1st pass" into experimental
parents
b480d413
1e733747
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
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/encoder/vp9_encodeintra.c
+6
-60
vp9/encoder/vp9_encodeintra.c
vp9/encoder/vp9_encodeintra.h
+0
-2
vp9/encoder/vp9_encodeintra.h
with
6 additions
and
62 deletions
vp9/encoder/vp9_encodeintra.c
+
6
−
60
View file @
c9718556
...
...
@@ -16,72 +16,18 @@
#include
"vp9/common/vp9_invtrans.h"
#include
"vp9/encoder/vp9_encodeintra.h"
static
void
encode_intra4x4block
(
MACROBLOCK
*
x
,
int
ib
,
BLOCK_SIZE_TYPE
bs
);
int
vp9_encode_intra
(
VP9_COMP
*
cpi
,
MACROBLOCK
*
x
,
int
use_16x16_pred
)
{
MB_MODE_INFO
*
mbmi
=
&
x
->
e_mbd
.
mode_info_context
->
mbmi
;
(
void
)
cpi
;
mbmi
->
mode
=
DC_PRED
;
mbmi
->
ref_frame
=
INTRA_FRAME
;
if
(
use_16x16_pred
)
{
mbmi
->
mode
=
DC_PRED
;
mbmi
->
uv_mode
=
DC_PRED
;
mbmi
->
ref_frame
=
INTRA_FRAME
;
vp9_encode_intra16x16mby
(
&
cpi
->
common
,
x
);
mbmi
->
txfm_size
=
TX_16X16
;
vp9_encode_intra_block_y
(
&
cpi
->
common
,
x
,
BLOCK_SIZE_MB16X16
);
}
else
{
int
i
;
for
(
i
=
0
;
i
<
16
;
i
++
)
{
encode_intra4x4block
(
x
,
i
,
BLOCK_SIZE_MB16X16
);
}
mbmi
->
txfm_size
=
TX_4X4
;
vp9_encode_intra_block_y
(
&
cpi
->
common
,
x
,
BLOCK_SIZE_MB16X16
);
}
return
vp9_get_mb_ss
(
x
->
plane
[
0
].
src_diff
);
}
// This function is used only by the firstpass encoding.
static
void
encode_intra4x4block
(
MACROBLOCK
*
x
,
int
ib
,
BLOCK_SIZE_TYPE
bsize
)
{
MACROBLOCKD
*
const
xd
=
&
x
->
e_mbd
;
uint8_t
*
const
src
=
raster_block_offset_uint8
(
xd
,
bsize
,
0
,
ib
,
x
->
plane
[
0
].
src
.
buf
,
x
->
plane
[
0
].
src
.
stride
);
uint8_t
*
const
dst
=
raster_block_offset_uint8
(
xd
,
bsize
,
0
,
ib
,
xd
->
plane
[
0
].
dst
.
buf
,
xd
->
plane
[
0
].
dst
.
stride
);
int16_t
*
const
src_diff
=
raster_block_offset_int16
(
xd
,
bsize
,
0
,
ib
,
x
->
plane
[
0
].
src_diff
);
int16_t
*
const
coeff
=
BLOCK_OFFSET
(
x
->
plane
[
0
].
coeff
,
ib
,
16
);
const
int
bwl
=
b_width_log2
(
bsize
),
bhl
=
b_height_log2
(
bsize
);
assert
(
ib
<
(
1
<<
(
bwl
+
bhl
)));
vp9_intra4x4_predict
(
&
x
->
e_mbd
,
ib
,
bsize
,
DC_PRED
,
dst
,
xd
->
plane
[
0
].
dst
.
stride
);
vp9_subtract_block
(
4
,
4
,
src_diff
,
4
<<
bwl
,
src
,
x
->
plane
[
0
].
src
.
stride
,
dst
,
xd
->
plane
[
0
].
dst
.
stride
);
x
->
fwd_txm4x4
(
src_diff
,
coeff
,
8
<<
bwl
);
x
->
quantize_b_4x4
(
x
,
ib
,
DCT_DCT
,
16
);
vp9_inverse_transform_b_4x4_add
(
&
x
->
e_mbd
,
xd
->
plane
[
0
].
eobs
[
ib
],
BLOCK_OFFSET
(
xd
->
plane
[
0
].
dqcoeff
,
ib
,
16
),
dst
,
xd
->
plane
[
0
].
dst
.
stride
);
}
void
vp9_encode_intra16x16mby
(
VP9_COMMON
*
const
cm
,
MACROBLOCK
*
x
)
{
MACROBLOCKD
*
xd
=
&
x
->
e_mbd
;
vp9_build_intra_predictors_sby_s
(
xd
,
BLOCK_SIZE_MB16X16
);
vp9_encode_sby
(
cm
,
x
,
BLOCK_SIZE_MB16X16
);
}
void
vp9_encode_intra16x16mbuv
(
VP9_COMMON
*
const
cm
,
MACROBLOCK
*
x
)
{
MACROBLOCKD
*
xd
=
&
x
->
e_mbd
;
vp9_build_intra_predictors_sbuv_s
(
xd
,
BLOCK_SIZE_MB16X16
);
vp9_encode_sbuv
(
cm
,
x
,
BLOCK_SIZE_MB16X16
);
}
This diff is collapsed.
Click to expand it.
vp9/encoder/vp9_encodeintra.h
+
0
−
2
View file @
c9718556
...
...
@@ -14,8 +14,6 @@
#include
"vp9/encoder/vp9_onyx_int.h"
int
vp9_encode_intra
(
VP9_COMP
*
cpi
,
MACROBLOCK
*
x
,
int
use_16x16_pred
);
void
vp9_encode_intra16x16mby
(
VP9_COMMON
*
const
cm
,
MACROBLOCK
*
x
);
void
vp9_encode_intra16x16mbuv
(
VP9_COMMON
*
const
cm
,
MACROBLOCK
*
x
);
void
vp9_encode_intra_block_y
(
VP9_COMMON
*
const
cm
,
MACROBLOCK
*
mb
,
BLOCK_SIZE_TYPE
bs
);
void
vp9_encode_intra_block_uv
(
VP9_COMMON
*
const
cm
,
MACROBLOCK
*
mb
,
...
...
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