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
bfeb90f9
Commit
bfeb90f9
authored
Aug 17, 2016
by
Yi Luo
Committed by
Gerrit Code Review
Aug 17, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Delete DCT 64x64 functions to save code size" into nextgenv2
parents
688a2ed1
166dd793
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
5 additions
and
2502 deletions
+5
-2502
test/vp10_fwd_txfm1d_test.cc
test/vp10_fwd_txfm1d_test.cc
+2
-3
test/vp10_inv_txfm1d_test.cc
test/vp10_inv_txfm1d_test.cc
+3
-5
vp10/common/vp10_fwd_txfm1d.c
vp10/common/vp10_fwd_txfm1d.c
+0
-793
vp10/common/vp10_fwd_txfm2d.c
vp10/common/vp10_fwd_txfm2d.c
+0
-1
vp10/common/vp10_inv_txfm1d.c
vp10/common/vp10_inv_txfm1d.c
+0
-793
vp10/common/vp10_inv_txfm2d.c
vp10/common/vp10_inv_txfm2d.c
+0
-1
vp10/common/x86/vp10_fwd_txfm1d_sse4.c
vp10/common/x86/vp10_fwd_txfm1d_sse4.c
+0
-905
vp10/common/x86/vp10_fwd_txfm2d_sse4.c
vp10/common/x86/vp10_fwd_txfm2d_sse4.c
+0
-1
No files found.
test/vp10_fwd_txfm1d_test.cc
View file @
bfeb90f9
...
...
@@ -23,11 +23,10 @@ const int txfm_type_num = 2;
const
TYPE_TXFM
txfm_type_ls
[
2
]
=
{
TYPE_DCT
,
TYPE_ADST
};
const
int
txfm_size_num
=
5
;
const
int
txfm_size_ls
[
5
]
=
{
4
,
8
,
16
,
32
,
64
};
const
int
txfm_size_ls
[
5
]
=
{
4
,
8
,
16
,
32
};
const
TxfmFunc
fwd_txfm_func_ls
[
2
][
5
]
=
{
{
vp10_fdct4_new
,
vp10_fdct8_new
,
vp10_fdct16_new
,
vp10_fdct32_new
,
vp10_fdct64_new
},
{
vp10_fdct4_new
,
vp10_fdct8_new
,
vp10_fdct16_new
,
vp10_fdct32_new
,
NULL
},
{
vp10_fadst4_new
,
vp10_fadst8_new
,
vp10_fadst16_new
,
vp10_fadst32_new
,
NULL
}
};
...
...
test/vp10_inv_txfm1d_test.cc
View file @
bfeb90f9
...
...
@@ -18,17 +18,15 @@ using libvpx_test::input_base;
namespace
{
const
int
txfm_type_num
=
2
;
const
int
txfm_size_num
=
5
;
const
int
txfm_size_ls
[
5
]
=
{
4
,
8
,
16
,
32
,
64
};
const
int
txfm_size_ls
[
5
]
=
{
4
,
8
,
16
,
32
};
const
TxfmFunc
fwd_txfm_func_ls
[
2
][
5
]
=
{
{
vp10_fdct4_new
,
vp10_fdct8_new
,
vp10_fdct16_new
,
vp10_fdct32_new
,
vp10_fdct64_new
},
{
vp10_fdct4_new
,
vp10_fdct8_new
,
vp10_fdct16_new
,
vp10_fdct32_new
,
NULL
},
{
vp10_fadst4_new
,
vp10_fadst8_new
,
vp10_fadst16_new
,
vp10_fadst32_new
,
NULL
}
};
const
TxfmFunc
inv_txfm_func_ls
[
2
][
5
]
=
{
{
vp10_idct4_new
,
vp10_idct8_new
,
vp10_idct16_new
,
vp10_idct32_new
,
vp10_idct64_new
},
{
vp10_idct4_new
,
vp10_idct8_new
,
vp10_idct16_new
,
vp10_idct32_new
,
NULL
},
{
vp10_iadst4_new
,
vp10_iadst8_new
,
vp10_iadst16_new
,
vp10_iadst32_new
,
NULL
}
};
...
...
vp10/common/vp10_fwd_txfm1d.c
View file @
bfeb90f9
This diff is collapsed.
Click to expand it.
vp10/common/vp10_fwd_txfm2d.c
View file @
bfeb90f9
...
...
@@ -22,7 +22,6 @@ static INLINE TxfmFunc fwd_txfm_type_to_func(TXFM_TYPE txfm_type) {
case
TXFM_TYPE_DCT8
:
return
vp10_fdct8_new
;
case
TXFM_TYPE_DCT16
:
return
vp10_fdct16_new
;
case
TXFM_TYPE_DCT32
:
return
vp10_fdct32_new
;
case
TXFM_TYPE_DCT64
:
return
vp10_fdct64_new
;
case
TXFM_TYPE_ADST4
:
return
vp10_fadst4_new
;
case
TXFM_TYPE_ADST8
:
return
vp10_fadst8_new
;
case
TXFM_TYPE_ADST16
:
return
vp10_fadst16_new
;
...
...
vp10/common/vp10_inv_txfm1d.c
View file @
bfeb90f9
This diff is collapsed.
Click to expand it.
vp10/common/vp10_inv_txfm2d.c
View file @
bfeb90f9
...
...
@@ -20,7 +20,6 @@ static INLINE TxfmFunc inv_txfm_type_to_func(TXFM_TYPE txfm_type) {
case
TXFM_TYPE_DCT8
:
return
vp10_idct8_new
;
case
TXFM_TYPE_DCT16
:
return
vp10_idct16_new
;
case
TXFM_TYPE_DCT32
:
return
vp10_idct32_new
;
case
TXFM_TYPE_DCT64
:
return
vp10_idct64_new
;
case
TXFM_TYPE_ADST4
:
return
vp10_iadst4_new
;
case
TXFM_TYPE_ADST8
:
return
vp10_iadst8_new
;
case
TXFM_TYPE_ADST16
:
return
vp10_iadst16_new
;
...
...
vp10/common/x86/vp10_fwd_txfm1d_sse4.c
View file @
bfeb90f9
This diff is collapsed.
Click to expand it.
vp10/common/x86/vp10_fwd_txfm2d_sse4.c
View file @
bfeb90f9
...
...
@@ -32,7 +32,6 @@ static INLINE TxfmFuncSSE2 fwd_txfm_type_to_func(TXFM_TYPE txfm_type) {
case
TXFM_TYPE_DCT8
:
return
vp10_fdct8_new_sse4_1
;
break
;
case
TXFM_TYPE_DCT16
:
return
vp10_fdct16_new_sse4_1
;
break
;
case
TXFM_TYPE_DCT32
:
return
vp10_fdct32_new_sse4_1
;
break
;
case
TXFM_TYPE_DCT64
:
return
vp10_fdct64_new_sse4_1
;
break
;
case
TXFM_TYPE_ADST4
:
return
vp10_fadst4_new_sse4_1
;
break
;
case
TXFM_TYPE_ADST8
:
return
vp10_fadst8_new_sse4_1
;
break
;
case
TXFM_TYPE_ADST16
:
return
vp10_fadst16_new_sse4_1
;
break
;
...
...
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