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
4bfc91a0
Commit
4bfc91a0
authored
Feb 25, 2008
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cosmetics: prettyprint
Originally committed as revision 12213 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
5b0d04d3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
mem.h
libavutil/mem.h
+9
-9
No files found.
libavutil/mem.h
View file @
4bfc91a0
...
...
@@ -27,18 +27,18 @@
#define FFMPEG_MEM_H
#ifdef __ICC
#define DECLARE_ALIGNED(n,t,v)
t v __attribute__ ((aligned (n)))
#define DECLARE_ASM_CONST(n,t,v)
const t __attribute__ ((aligned (n))) v
#define DECLARE_ALIGNED(n,t,v)
t v __attribute__ ((aligned (n)))
#define DECLARE_ASM_CONST(n,t,v)
const t __attribute__ ((aligned (n))) v
#elif defined(__GNUC__)
#define DECLARE_ALIGNED(n,t,v)
t v __attribute__ ((aligned (n)))
#define DECLARE_ASM_CONST(n,t,v)
static const t v attribute_used __attribute__ ((aligned (n)))
#define DECLARE_ALIGNED(n,t,v)
t v __attribute__ ((aligned (n)))
#define DECLARE_ASM_CONST(n,t,v)
static const t v attribute_used __attribute__ ((aligned (n)))
#elif defined(_MSVC)
#define DECLARE_ALIGNED(n,t,v) __declspec(align(n)) t v
#define DECLARE_ASM_CONST(n,t,v) __declspec(align(n)) static const t v
#define DECLARE_ALIGNED(n,t,v) __declspec(align(n)) t v
#define DECLARE_ASM_CONST(n,t,v) __declspec(align(n)) static const t v
#else
#warning No align and asm directives, this might fail.
#define DECLARE_ALIGNED(n,t,v) t v
#define DECLARE_ASM_CONST(n,t,v) static const t v
#warning No align and asm directives, this might fail.
#define DECLARE_ALIGNED(n,t,v) t v
#define DECLARE_ASM_CONST(n,t,v) static const t v
#endif
/**
...
...
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