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
73e15e8e
Commit
73e15e8e
authored
Feb 09, 2012
by
Ronald S. Bultje
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
prores: specify array size outside DECLARE_ALIGNED brackets.
parent
0f3d8bae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
proresdec.c
libavcodec/proresdec.c
+3
-3
No files found.
libavcodec/proresdec.c
View file @
73e15e8e
...
...
@@ -42,7 +42,7 @@ typedef struct {
int
slice_num
;
int
x_pos
,
y_pos
;
int
slice_width
;
DECLARE_ALIGNED
(
16
,
DCTELEM
,
blocks
[
8
*
4
*
64
])
;
DECLARE_ALIGNED
(
16
,
DCTELEM
,
blocks
)[
8
*
4
*
64
]
;
}
ProresThreadData
;
typedef
struct
{
...
...
@@ -57,8 +57,8 @@ typedef struct {
uint8_t
qmat_chroma
[
64
];
///< dequantization matrix for chroma
int
qmat_changed
;
///< 1 - global quantization matrices changed
int
prev_slice_sf
;
///< scalefactor of the previous decoded slice
DECLARE_ALIGNED
(
16
,
int16_t
,
qmat_luma_scaled
[
64
])
;
DECLARE_ALIGNED
(
16
,
int16_t
,
qmat_chroma_scaled
[
64
])
;
DECLARE_ALIGNED
(
16
,
int16_t
,
qmat_luma_scaled
)[
64
]
;
DECLARE_ALIGNED
(
16
,
int16_t
,
qmat_chroma_scaled
)[
64
]
;
int
total_slices
;
///< total number of slices in a picture
ProresThreadData
*
slice_data
;
int
pic_num
;
...
...
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