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
19a95f0e
Commit
19a95f0e
authored
Jul 22, 2016
by
James Zern
Committed by
Gerrit Code Review
Jul 22, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Restore vp10_default_scan_orders[]" into nextgenv2
parents
e96c20b1
da309003
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
vp10/common/scan.c
vp10/common/scan.c
+7
-0
vp10/common/scan.h
vp10/common/scan.h
+1
-0
No files found.
vp10/common/scan.c
View file @
19a95f0e
...
...
@@ -3111,6 +3111,13 @@ DECLARE_ALIGNED(16, static const int16_t, vp10_qtr_iscan_32x32[1024]) = {
};
#endif // CONFIG_EXT_TX
const
scan_order
vp10_default_scan_orders
[
TX_SIZES
]
=
{
{
default_scan_4x4
,
vp10_default_iscan_4x4
,
default_scan_4x4_neighbors
},
{
default_scan_8x8
,
vp10_default_iscan_8x8
,
default_scan_8x8_neighbors
},
{
default_scan_16x16
,
vp10_default_iscan_16x16
,
default_scan_16x16_neighbors
},
{
default_scan_32x32
,
vp10_default_iscan_32x32
,
default_scan_32x32_neighbors
},
};
#if CONFIG_EXT_TX
const
scan_order
vp10_intra_scan_orders
[
TX_SIZES
][
TX_TYPES
]
=
{
{
// TX_4X4
...
...
vp10/common/scan.h
View file @
19a95f0e
...
...
@@ -29,6 +29,7 @@ typedef struct {
const
int16_t
*
neighbors
;
}
scan_order
;
extern
const
scan_order
vp10_default_scan_orders
[
TX_SIZES
];
extern
const
scan_order
vp10_intra_scan_orders
[
TX_SIZES
][
TX_TYPES
];
static
INLINE
int
get_coef_context
(
const
int16_t
*
neighbors
,
...
...
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