Skip to content
GitLab
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
01e41a53
Commit
01e41a53
authored
Apr 20, 2013
by
John Koleszar
Browse files
Remove vp9_recon_intra_mbuv
Use common vp9_recon_sbuv instead. Change-Id: I146f79adfdfda2b52257a52fa783727f12afa246
parent
c2c15e8e
Changes
3
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_reconintra.c
View file @
01e41a53
...
...
@@ -269,15 +269,6 @@ static void corner_predictor(uint8_t *ypred_ptr, int y_stride, int n,
}
}
void
vp9_recon_intra_mbuv
(
MACROBLOCKD
*
xd
)
{
int
i
;
for
(
i
=
16
;
i
<
24
;
i
+=
2
)
{
BLOCKD
*
b
=
&
xd
->
block
[
i
];
vp9_recon2b
(
*
(
b
->
base_dst
)
+
b
->
dst
,
b
->
diff
,
*
(
b
->
base_dst
)
+
b
->
dst
,
b
->
dst_stride
);
}
}
static
INLINE
int
log2_minus_1
(
int
n
)
{
switch
(
n
)
{
case
4
:
return
1
;
...
...
vp9/common/vp9_reconintra.h
View file @
01e41a53
...
...
@@ -14,8 +14,6 @@
#include
"vpx/vpx_integer.h"
#include
"vp9/common/vp9_blockd.h"
void
vp9_recon_intra_mbuv
(
MACROBLOCKD
*
xd
);
B_PREDICTION_MODE
vp9_find_dominant_direction
(
uint8_t
*
ptr
,
int
stride
,
int
n
,
int
tx
,
int
ty
);
...
...
vp9/encoder/vp9_encodeintra.c
View file @
01e41a53
...
...
@@ -146,7 +146,7 @@ void vp9_encode_intra16x16mbuv(VP9_COMMON *const cm, MACROBLOCK *x) {
break
;
}
vp9_recon_
intra_mbuv
(
xd
);
vp9_recon_
sbuv
(
xd
,
BLOCK_SIZE_MB16X16
);
}
void
vp9_encode_intra8x8
(
MACROBLOCK
*
x
,
int
ib
)
{
...
...
Write
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!
Cancel
Please
register
or
sign in
to comment