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
635eb0cc
Commit
635eb0cc
authored
Nov 14, 2006
by
Måns Rullgård
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
indentation
Originally committed as revision 7046 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
18451f7d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
35 deletions
+35
-35
internal.h
libavutil/internal.h
+35
-35
No files found.
libavutil/internal.h
View file @
635eb0cc
...
...
@@ -30,9 +30,9 @@
# define PIC
#endif
#
ifndef ENODATA
#ifndef ENODATA
# define ENODATA 61
#
endif
#endif
#include "bswap.h"
...
...
@@ -57,23 +57,23 @@
#elif defined (CONFIG_OS2)
/* OS/2 EMX */
#include <float.h>
#
include <float.h>
#endif
/* !__MINGW32__ && CONFIG_OS2 */
#
ifdef USE_FASTMEMCPY
#ifdef USE_FASTMEMCPY
# include "libvo/fastmemcpy.h"
#
endif
#endif
// Use rip-relative addressing if compiling PIC code on x86-64.
#
if defined(__MINGW32__) || defined(__CYGWIN__) || \
#if defined(__MINGW32__) || defined(__CYGWIN__) || \
defined(__OS2__) || (defined (__OpenBSD__) && !defined(__ELF__))
# if defined(ARCH_X86_64) && defined(PIC)
# define MANGLE(a) "_" #a"(%%rip)"
# else
# define MANGLE(a) "_" #a
# endif
#
else
#else
# if defined(ARCH_X86_64) && defined(PIC)
# define MANGLE(a) #a"(%%rip)"
# elif defined(CONFIG_DARWIN)
...
...
@@ -81,27 +81,27 @@
# else
# define MANGLE(a) #a
# endif
#
endif
#endif
/* debug stuff */
#
if !defined(DEBUG) && !defined(NDEBUG)
#if !defined(DEBUG) && !defined(NDEBUG)
# define NDEBUG
#
endif
#
include <assert.h>
#endif
#include <assert.h>
/* dprintf macros */
#
ifdef DEBUG
#ifdef DEBUG
# define dprintf(fmt,...) av_log(NULL, AV_LOG_DEBUG, fmt, __VA_ARGS__)
#
else
#else
# define dprintf(fmt,...)
#
endif
#endif
#
ifdef CONFIG_WINCE
#ifdef CONFIG_WINCE
# define abort()
#
endif
#endif
#
define av_abort() do { av_log(NULL, AV_LOG_ERROR, "Abort at %s:%d\n", __FILE__, __LINE__); abort(); } while (0)
#define av_abort() do { av_log(NULL, AV_LOG_ERROR, "Abort at %s:%d\n", __FILE__, __LINE__); abort(); } while (0)
extern
const
uint32_t
ff_inverse
[
256
];
...
...
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