Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
05b45e6b
Commit
05b45e6b
authored
Jun 26, 2017
by
Frederic Barbier
Committed by
Fred BARBIER
Jun 28, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid use of deprecated inv-txfm in encoder
Change-Id: Ie721eaf58d0716e340b9ebdff9fd215cfe0c3c2a
parent
894cc813
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
7 deletions
+3
-7
av1/encoder/encodemb.c
av1/encoder/encodemb.c
+3
-7
No files found.
av1/encoder/encodemb.c
View file @
05b45e6b
...
...
@@ -906,13 +906,9 @@ static void encode_block_pass1(int plane, int block, int blk_row, int blk_col,
#endif // !CONFIG_PVQ
#if CONFIG_HIGHBITDEPTH
if
(
xd
->
cur_buf
->
flags
&
YV12_FLAG_HIGHBITDEPTH
)
{
if
(
xd
->
lossless
[
xd
->
mi
[
0
]
->
mbmi
.
segment_id
])
{
av1_highbd_iwht4x4_add
(
dqcoeff
,
dst
,
pd
->
dst
.
stride
,
p
->
eobs
[
block
],
xd
->
bd
);
}
else
{
av1_highbd_idct4x4_add
(
dqcoeff
,
dst
,
pd
->
dst
.
stride
,
p
->
eobs
[
block
],
xd
->
bd
);
}
av1_highbd_inv_txfm_add_4x4
(
dqcoeff
,
dst
,
pd
->
dst
.
stride
,
p
->
eobs
[
block
],
xd
->
bd
,
DCT_DCT
,
xd
->
lossless
[
xd
->
mi
[
0
]
->
mbmi
.
segment_id
]);
return
;
}
#endif // CONFIG_HIGHBITDEPTH
...
...
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