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
Yushin Cho
aom-rav1e
Commits
040dc8c9
Commit
040dc8c9
authored
Nov 18, 2013
by
Yaowu Xu
Committed by
Gerrit Code Review
Nov 18, 2013
Browse files
Merge "Fixed a bug in commit
a4a5a210
"
parents
a42ab027
e63aaf9a
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_rdopt.c
View file @
040dc8c9
...
...
@@ -612,8 +612,9 @@ static void block_yrd_txfm(int plane, int block, BLOCK_SIZE plane_bsize,
// TODO(jingning): temporarily enabled only for luma component
rd
=
MIN
(
rd1
,
rd2
);
if
(
!
xd
->
lossless
&&
plane
==
0
)
x
->
zcoeff_blk
[
tx_size
][
block
]
=
rd1
>
rd2
||
!
xd
->
plane
[
plane
].
eobs
[
block
];
if
(
plane
==
0
)
x
->
zcoeff_blk
[
tx_size
][
block
]
=
!
xd
->
plane
[
plane
].
eobs
[
block
]
||
(
rd1
>
rd2
&&
!
xd
->
lossless
);
args
->
this_rate
+=
args
->
rate
;
args
->
this_dist
+=
args
->
dist
;
...
...
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