Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
7d67aed1
Commit
7d67aed1
authored
Apr 03, 2013
by
John Koleszar
Committed by
Gerrit Code Review
Apr 03, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Remove unused inplace idct_add functions" into experimental
parents
8b71b8a6
e7b3b692
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
113 deletions
+0
-113
vp9/decoder/vp9_dequantize.h
vp9/decoder/vp9_dequantize.h
+0
-34
vp9/decoder/vp9_idct_blk.c
vp9/decoder/vp9_idct_blk.c
+0
-79
No files found.
vp9/decoder/vp9_dequantize.h
View file @
7d67aed1
...
...
@@ -59,38 +59,4 @@ void vp9_ht_dequant_idct_add_16x16_c(TX_TYPE tx_type, int16_t *input,
unsigned
char
*
dest
,
int
pitch
,
int
stride
,
int
eob
);
void
vp9_dequant_dc_idct_add_y_block_8x8_inplace_c
(
int16_t
*
q
,
const
int16_t
*
dq
,
unsigned
char
*
dst
,
int
stride
,
const
int16_t
*
dc
,
MACROBLOCKD
*
xd
);
void
vp9_dequant_idct_add_y_block_8x8_inplace_c
(
int16_t
*
q
,
const
int16_t
*
dq
,
unsigned
char
*
dst
,
int
stride
,
MACROBLOCKD
*
xd
);
void
vp9_dequant_dc_idct_add_y_block_4x4_inplace_c
(
int16_t
*
q
,
const
int16_t
*
dq
,
unsigned
char
*
dst
,
int
stride
,
const
int16_t
*
dc
,
MACROBLOCKD
*
xd
);
void
vp9_dequant_idct_add_y_block_4x4_inplace_c
(
int16_t
*
q
,
const
int16_t
*
dq
,
unsigned
char
*
dst
,
int
stride
,
MACROBLOCKD
*
xd
);
void
vp9_dequant_idct_add_uv_block_8x8_inplace_c
(
int16_t
*
q
,
const
int16_t
*
dq
,
unsigned
char
*
dstu
,
unsigned
char
*
dstv
,
int
stride
,
MACROBLOCKD
*
xd
);
void
vp9_dequant_idct_add_uv_block_4x4_inplace_c
(
int16_t
*
q
,
const
int16_t
*
dq
,
unsigned
char
*
dstu
,
unsigned
char
*
dstv
,
int
stride
,
MACROBLOCKD
*
xd
);
#endif // VP9_DECODER_VP9_DEQUANTIZE_H_
vp9/decoder/vp9_idct_blk.c
View file @
7d67aed1
...
...
@@ -12,24 +12,6 @@
#include "vp9/common/vp9_blockd.h"
#include "vp9/decoder/vp9_dequantize.h"
void
vp9_dequant_idct_add_y_block_4x4_inplace_c
(
int16_t
*
q
,
const
int16_t
*
dq
,
uint8_t
*
dst
,
int
stride
,
MACROBLOCKD
*
xd
)
{
int
i
,
j
;
for
(
i
=
0
;
i
<
4
;
i
++
)
{
for
(
j
=
0
;
j
<
4
;
j
++
)
{
xd
->
itxm_add
(
q
,
dq
,
dst
,
dst
,
stride
,
stride
,
xd
->
eobs
[
i
*
4
+
j
]);
q
+=
16
;
dst
+=
4
;
}
dst
+=
4
*
stride
-
16
;
}
}
void
vp9_dequant_idct_add_y_block_c
(
int16_t
*
q
,
const
int16_t
*
dq
,
uint8_t
*
pre
,
uint8_t
*
dst
,
...
...
@@ -82,53 +64,6 @@ void vp9_dequant_idct_add_uv_block_c(int16_t *q, const int16_t *dq,
}
}
void
vp9_dequant_idct_add_uv_block_4x4_inplace_c
(
int16_t
*
q
,
const
int16_t
*
dq
,
uint8_t
*
dstu
,
uint8_t
*
dstv
,
int
stride
,
MACROBLOCKD
*
xd
)
{
int
i
,
j
;
for
(
i
=
0
;
i
<
2
;
i
++
)
{
for
(
j
=
0
;
j
<
2
;
j
++
)
{
xd
->
itxm_add
(
q
,
dq
,
dstu
,
dstu
,
stride
,
stride
,
xd
->
eobs
[
16
+
i
*
2
+
j
]);
q
+=
16
;
dstu
+=
4
;
}
dstu
+=
4
*
stride
-
8
;
}
for
(
i
=
0
;
i
<
2
;
i
++
)
{
for
(
j
=
0
;
j
<
2
;
j
++
)
{
xd
->
itxm_add
(
q
,
dq
,
dstv
,
dstv
,
stride
,
stride
,
xd
->
eobs
[
20
+
i
*
2
+
j
]);
q
+=
16
;
dstv
+=
4
;
}
dstv
+=
4
*
stride
-
8
;
}
}
void
vp9_dequant_idct_add_y_block_8x8_inplace_c
(
int16_t
*
q
,
const
int16_t
*
dq
,
uint8_t
*
dst
,
int
stride
,
MACROBLOCKD
*
xd
)
{
vp9_dequant_idct_add_8x8_c
(
q
,
dq
,
dst
,
dst
,
stride
,
stride
,
xd
->
eobs
[
0
]);
vp9_dequant_idct_add_8x8_c
(
&
q
[
64
],
dq
,
dst
+
8
,
dst
+
8
,
stride
,
stride
,
xd
->
eobs
[
4
]);
vp9_dequant_idct_add_8x8_c
(
&
q
[
128
],
dq
,
dst
+
8
*
stride
,
dst
+
8
*
stride
,
stride
,
stride
,
xd
->
eobs
[
8
]);
vp9_dequant_idct_add_8x8_c
(
&
q
[
192
],
dq
,
dst
+
8
*
stride
+
8
,
dst
+
8
*
stride
+
8
,
stride
,
stride
,
xd
->
eobs
[
12
]);
}
void
vp9_dequant_idct_add_y_block_8x8_c
(
int16_t
*
q
,
const
int16_t
*
dq
,
uint8_t
*
pre
,
uint8_t
*
dst
,
...
...
@@ -160,20 +95,6 @@ void vp9_dequant_idct_add_uv_block_8x8_c(int16_t *q, const int16_t *dq,
vp9_dequant_idct_add_8x8_c
(
q
,
dq
,
pre
,
dstv
,
8
,
stride
,
xd
->
eobs
[
20
]);
}
void
vp9_dequant_idct_add_uv_block_8x8_inplace_c
(
int16_t
*
q
,
const
int16_t
*
dq
,
uint8_t
*
dstu
,
uint8_t
*
dstv
,
int
stride
,
MACROBLOCKD
*
xd
)
{
vp9_dequant_idct_add_8x8_c
(
q
,
dq
,
dstu
,
dstu
,
stride
,
stride
,
xd
->
eobs
[
16
]);
q
+=
64
;
vp9_dequant_idct_add_8x8_c
(
q
,
dq
,
dstv
,
dstv
,
stride
,
stride
,
xd
->
eobs
[
20
]);
}
void
vp9_dequant_idct_add_y_block_lossless_c
(
int16_t
*
q
,
const
int16_t
*
dq
,
uint8_t
*
pre
,
uint8_t
*
dst
,
...
...
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