Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guillaume Martres
aom-rav1e
Commits
5a4e17b4
Commit
5a4e17b4
authored
Apr 23, 2014
by
Jingning Han
Browse files
Apply max intra block size condition to non-RD mode decision
Change-Id: I9b86a94d11db2239c85f61aeed5bbd83a0dfa028
parent
8969f7c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_pickmode.c
View file @
5a4e17b4
...
...
@@ -418,7 +418,7 @@ int64_t vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x,
// Perform intra prediction search, if the best SAD is above a certain
// threshold.
if
(
best_rd
>
inter_mode_thresh
)
{
if
(
best_rd
>
inter_mode_thresh
&&
bsize
<
cpi
->
sf
.
max_intra_bsize
)
{
for
(
this_mode
=
DC_PRED
;
this_mode
<=
DC_PRED
;
++
this_mode
)
{
vp9_predict_intra_block
(
xd
,
0
,
b_width_log2
(
bsize
),
mbmi
->
tx_size
,
this_mode
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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