Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
7ddfa0be
Commit
7ddfa0be
authored
Nov 01, 2016
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/dnxhdenc: Fix alignment of edge_buf*
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
719c15aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
dnxhdenc.h
libavcodec/dnxhdenc.h
+2
-2
No files found.
libavcodec/dnxhdenc.h
View file @
7ddfa0be
...
@@ -71,8 +71,8 @@ typedef struct DNXHDEncContext {
...
@@ -71,8 +71,8 @@ typedef struct DNXHDEncContext {
int
intra_quant_bias
;
int
intra_quant_bias
;
DECLARE_ALIGNED
(
16
,
int16_t
,
blocks
)[
8
][
64
];
DECLARE_ALIGNED
(
16
,
int16_t
,
blocks
)[
8
][
64
];
uint8_t
edge_buf_y
[
256
];
DECLARE_ALIGNED
(
16
,
uint8_t
,
edge_buf_y
)
[
256
];
uint8_t
edge_buf_uv
[
2
][
128
];
DECLARE_ALIGNED
(
16
,
uint8_t
,
edge_buf_uv
)
[
2
][
128
];
int
(
*
qmatrix_c
)
[
64
];
int
(
*
qmatrix_c
)
[
64
];
int
(
*
qmatrix_l
)
[
64
];
int
(
*
qmatrix_l
)
[
64
];
...
...
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