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
d467740f
Commit
d467740f
authored
Mar 29, 2017
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc/idctdsp: use prefix restrict with av_
parent
eaa67bb9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
idctdsp.h
libavcodec/idctdsp.h
+3
-3
No files found.
libavcodec/idctdsp.h
View file @
d467740f
...
...
@@ -53,13 +53,13 @@ int ff_init_scantable_permutation_x86(uint8_t *idct_permutation,
typedef
struct
IDCTDSPContext
{
/* pixel ops : interface with DCT */
void
(
*
put_pixels_clamped
)(
const
int16_t
*
block
/* align 16 */
,
uint8_t
*
restrict
pixels
/* align 8 */
,
uint8_t
*
av_
restrict
pixels
/* align 8 */
,
ptrdiff_t
line_size
);
void
(
*
put_signed_pixels_clamped
)(
const
int16_t
*
block
/* align 16 */
,
uint8_t
*
restrict
pixels
/* align 8 */
,
uint8_t
*
av_
restrict
pixels
/* align 8 */
,
ptrdiff_t
line_size
);
void
(
*
add_pixels_clamped
)(
const
int16_t
*
block
/* align 16 */
,
uint8_t
*
restrict
pixels
/* align 8 */
,
uint8_t
*
av_
restrict
pixels
/* align 8 */
,
ptrdiff_t
line_size
);
void
(
*
idct
)(
int16_t
*
block
/* align 16 */
);
...
...
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