Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
dav1d
Commits
09de524c
Commit
09de524c
authored
Oct 23, 2018
by
Henrik Gramner
Browse files
Align wedge mask buffers
parent
bc803f00
Pipeline
#1234
passed with stage
in 2 minutes and 2 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/wedge.c
View file @
09de524c
...
...
@@ -83,35 +83,35 @@ static const wedge_code_type wedge_codebook_16_heqw[16] = {
{
WEDGE_OBLIQUE117
,
2
,
4
},
{
WEDGE_OBLIQUE117
,
6
,
4
},
};
static
uint8_t
wedge_masks_444_32x32
[
2
*
16
*
32
*
32
];
static
uint8_t
wedge_masks_444_32x16
[
2
*
16
*
32
*
16
];
static
uint8_t
wedge_masks_444_32x8
[
2
*
16
*
32
*
8
];
static
uint8_t
wedge_masks_444_16x32
[
2
*
16
*
16
*
32
];
static
uint8_t
wedge_masks_444_16x16
[
2
*
16
*
16
*
16
];
static
uint8_t
wedge_masks_444_16x8
[
2
*
16
*
16
*
8
];
static
uint8_t
wedge_masks_444_8x32
[
2
*
16
*
8
*
32
];
static
uint8_t
wedge_masks_444_8x16
[
2
*
16
*
8
*
16
];
static
uint8_t
wedge_masks_444_8x8
[
2
*
16
*
8
*
8
];
static
uint8_t
wedge_masks_422_16x32
[
2
*
16
*
16
*
32
];
static
uint8_t
wedge_masks_422_16x16
[
2
*
16
*
16
*
16
];
static
uint8_t
wedge_masks_422_16x8
[
2
*
16
*
16
*
8
];
static
uint8_t
wedge_masks_422_8x32
[
2
*
16
*
8
*
32
];
static
uint8_t
wedge_masks_422_8x16
[
2
*
16
*
8
*
16
];
static
uint8_t
wedge_masks_422_8x8
[
2
*
16
*
8
*
8
];
static
uint8_t
wedge_masks_422_4x32
[
2
*
16
*
4
*
32
];
static
uint8_t
wedge_masks_422_4x16
[
2
*
16
*
4
*
16
];
static
uint8_t
wedge_masks_422_4x8
[
2
*
16
*
4
*
8
];
static
uint8_t
wedge_masks_420_16x16
[
2
*
16
*
16
*
16
];
static
uint8_t
wedge_masks_420_16x8
[
2
*
16
*
16
*
8
];
static
uint8_t
wedge_masks_420_16x4
[
2
*
16
*
16
*
4
];
static
uint8_t
wedge_masks_420_8x16
[
2
*
16
*
8
*
16
];
static
uint8_t
wedge_masks_420_8x8
[
2
*
16
*
8
*
8
];
static
uint8_t
wedge_masks_420_8x4
[
2
*
16
*
8
*
4
];
static
uint8_t
wedge_masks_420_4x16
[
2
*
16
*
4
*
16
];
static
uint8_t
wedge_masks_420_4x8
[
2
*
16
*
4
*
8
];
static
uint8_t
wedge_masks_420_4x4
[
2
*
16
*
4
*
4
];
static
uint8_t
ALIGN
(
wedge_masks_444_32x32
[
2
*
16
*
32
*
32
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_444_32x16
[
2
*
16
*
32
*
16
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_444_32x8
[
2
*
16
*
32
*
8
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_444_16x32
[
2
*
16
*
16
*
32
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_444_16x16
[
2
*
16
*
16
*
16
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_444_16x8
[
2
*
16
*
16
*
8
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_444_8x32
[
2
*
16
*
8
*
32
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_444_8x16
[
2
*
16
*
8
*
16
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_444_8x8
[
2
*
16
*
8
*
8
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_422_16x32
[
2
*
16
*
16
*
32
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_422_16x16
[
2
*
16
*
16
*
16
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_422_16x8
[
2
*
16
*
16
*
8
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_422_8x32
[
2
*
16
*
8
*
32
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_422_8x16
[
2
*
16
*
8
*
16
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_422_8x8
[
2
*
16
*
8
*
8
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_422_4x32
[
2
*
16
*
4
*
32
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_422_4x16
[
2
*
16
*
4
*
16
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_422_4x8
[
2
*
16
*
4
*
8
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_420_16x16
[
2
*
16
*
16
*
16
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_420_16x8
[
2
*
16
*
16
*
8
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_420_16x4
[
2
*
16
*
16
*
4
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_420_8x16
[
2
*
16
*
8
*
16
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_420_8x8
[
2
*
16
*
8
*
8
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_420_8x4
[
2
*
16
*
8
*
4
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_420_4x16
[
2
*
16
*
4
*
16
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_420_4x8
[
2
*
16
*
4
*
8
]
,
32
)
;
static
uint8_t
ALIGN
(
wedge_masks_420_4x4
[
2
*
16
*
4
*
4
]
,
32
)
;
const
uint8_t
*
dav1d_wedge_masks
[
N_BS_SIZES
][
3
][
2
][
16
];
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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