Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
ee155011
Commit
ee155011
authored
15 years ago
by
Diego Biurrun
Browse files
Options
Downloads
Patches
Plain Diff
whitespace cosmetics, prettyprinting
Originally committed as revision 19751 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
f4258b13
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavutil/internal.h
+35
-35
35 additions, 35 deletions
libavutil/internal.h
with
35 additions
and
35 deletions
libavutil/internal.h
+
35
−
35
View file @
ee155011
...
@@ -56,7 +56,7 @@
...
@@ -56,7 +56,7 @@
#endif
#endif
#ifndef INT16_MIN
#ifndef INT16_MIN
#define INT16_MIN (-0x7fff
-
1)
#define INT16_MIN (-0x7fff
-
1)
#endif
#endif
#ifndef INT16_MAX
#ifndef INT16_MAX
...
@@ -64,7 +64,7 @@
...
@@ -64,7 +64,7 @@
#endif
#endif
#ifndef INT32_MIN
#ifndef INT32_MIN
#define INT32_MIN (-0x7fffffff
-
1)
#define INT32_MIN (-0x7fffffff
-
1)
#endif
#endif
#ifndef INT32_MAX
#ifndef INT32_MAX
...
@@ -76,7 +76,7 @@
...
@@ -76,7 +76,7 @@
#endif
#endif
#ifndef INT64_MIN
#ifndef INT64_MIN
#define INT64_MIN (-0x7fffffffffffffffLL
-
1)
#define INT64_MIN (-0x7fffffffffffffffLL
-
1)
#endif
#endif
#ifndef INT64_MAX
#ifndef INT64_MAX
...
@@ -96,7 +96,7 @@
...
@@ -96,7 +96,7 @@
#endif
#endif
#ifndef offsetof
#ifndef offsetof
# define offsetof(T,F) ((unsigned int)((char *)&((T *)0)->F))
# define offsetof(T,
F) ((unsigned int)((char *)&((T *)0)->F))
#endif
#endif
/* Use to export labels from asm. */
/* Use to export labels from asm. */
...
@@ -129,11 +129,11 @@ extern const uint32_t ff_inverse[256];
...
@@ -129,11 +129,11 @@ extern const uint32_t ff_inverse[256];
#if ARCH_X86
#if ARCH_X86
# define FASTDIV(a,b) \
# define FASTDIV(a,b) \
({\
({\
int ret,dmy;\
int ret,
dmy;\
__asm__ volatile(\
__asm__ volatile(\
"mull %3"\
"mull %3"\
:"=d"(ret),"=a"(dmy)\
:"=d"(ret),
"=a"(dmy)\
:"1"(a),"g"(ff_inverse[b])\
:"1"(a),
"g"(ff_inverse[b])\
);\
);\
ret;\
ret;\
})
})
...
@@ -152,14 +152,14 @@ static inline av_const int FASTDIV(int a, int b)
...
@@ -152,14 +152,14 @@ static inline av_const int FASTDIV(int a, int b)
static
inline
av_const
int
FASTDIV
(
int
a
,
int
b
)
static
inline
av_const
int
FASTDIV
(
int
a
,
int
b
)
{
{
int
r
,
t
;
int
r
,
t
;
__asm__
volatile
(
"umull %1, %0, %2, %3"
__asm__
volatile
(
"umull %1, %0, %2, %3"
:
"=&r"
(
r
),
"=&r"
(
t
)
:
"r"
(
a
),
"r"
(
ff_inverse
[
b
]));
:
"=&r"
(
r
),
"=&r"
(
t
)
:
"r"
(
a
),
"r"
(
ff_inverse
[
b
]));
return
r
;
return
r
;
}
}
#elif CONFIG_FASTDIV
#elif CONFIG_FASTDIV
# define FASTDIV(a,b) ((uint32_t)((((uint64_t)a)
*
ff_inverse[b])>>32))
# define FASTDIV(a,b) ((uint32_t)((((uint64_t)a)
*
ff_inverse[b])
>>
32))
#else
#else
# define FASTDIV(a,b) ((a)
/
(b))
# define FASTDIV(a,b) ((a)
/
(b))
#endif
#endif
extern
const
uint8_t
ff_sqrt_tab
[
256
];
extern
const
uint8_t
ff_sqrt_tab
[
256
];
...
@@ -168,20 +168,20 @@ static inline av_const unsigned int ff_sqrt(unsigned int a)
...
@@ -168,20 +168,20 @@ static inline av_const unsigned int ff_sqrt(unsigned int a)
{
{
unsigned
int
b
;
unsigned
int
b
;
if
(
a
<
255
)
return
(
ff_sqrt_tab
[
a
+
1
]
-
1
)
>>
4
;
if
(
a
<
255
)
return
(
ff_sqrt_tab
[
a
+
1
]
-
1
)
>>
4
;
else
if
(
a
<
(
1
<<
12
))
b
=
ff_sqrt_tab
[
a
>>
4
]
>>
2
;
else
if
(
a
<
(
1
<<
12
))
b
=
ff_sqrt_tab
[
a
>>
4
]
>>
2
;
#if !CONFIG_SMALL
#if !CONFIG_SMALL
else
if
(
a
<
(
1
<<
14
))
b
=
ff_sqrt_tab
[
a
>>
6
]
>>
1
;
else
if
(
a
<
(
1
<<
14
))
b
=
ff_sqrt_tab
[
a
>>
6
]
>>
1
;
else
if
(
a
<
(
1
<<
16
))
b
=
ff_sqrt_tab
[
a
>>
8
]
;
else
if
(
a
<
(
1
<<
16
))
b
=
ff_sqrt_tab
[
a
>>
8
]
;
#endif
#endif
else
{
else
{
int
s
=
av_log2_16bit
(
a
>>
16
)
>>
1
;
int
s
=
av_log2_16bit
(
a
>>
16
)
>>
1
;
unsigned
int
c
=
a
>>
(
s
+
2
);
unsigned
int
c
=
a
>>
(
s
+
2
);
b
=
ff_sqrt_tab
[
c
>>
(
s
+
8
)];
b
=
ff_sqrt_tab
[
c
>>
(
s
+
8
)];
b
=
FASTDIV
(
c
,
b
)
+
(
b
<<
s
);
b
=
FASTDIV
(
c
,
b
)
+
(
b
<<
s
);
}
}
return
b
-
(
a
<
b
*
b
);
return
b
-
(
a
<
b
*
b
);
}
}
#if ARCH_X86
#if ARCH_X86
...
@@ -194,14 +194,14 @@ static inline av_const unsigned int ff_sqrt(unsigned int a)
...
@@ -194,14 +194,14 @@ static inline av_const unsigned int ff_sqrt(unsigned int a)
);
);
#else
#else
#define MASK_ABS(mask, level)\
#define MASK_ABS(mask, level)\
mask= level>>31;\
mask
= level
>>
31;\
level= (level
^
mask)
-
mask;
level
= (level
^
mask)
-
mask;
#endif
#endif
#if HAVE_CMOV
#if HAVE_CMOV
#define COPY3_IF_LT(x,y,a,b,c,d)\
#define COPY3_IF_LT(x,
y,
a,
b,
c,
d)\
__asm__ volatile
(\
__asm__ volatile(\
"cmpl %0, %3
\n\t"\
"cmpl
%0, %3 \n\t"\
"cmovl %3, %0 \n\t"\
"cmovl %3, %0 \n\t"\
"cmovl %4, %1 \n\t"\
"cmovl %4, %1 \n\t"\
"cmovl %5, %2 \n\t"\
"cmovl %5, %2 \n\t"\
...
@@ -209,11 +209,11 @@ __asm__ volatile (\
...
@@ -209,11 +209,11 @@ __asm__ volatile (\
: "r" (y), "r" (b), "r" (d)\
: "r" (y), "r" (b), "r" (d)\
);
);
#else
#else
#define COPY3_IF_LT(x,y,a,b,c,d)\
#define COPY3_IF_LT(x,
y,
a,
b,
c,
d)\
if((y)
<
(x)){\
if
((y)
<
(x))
{\
(x)
=
(y);\
(x)
=
(y);\
(a)
=
(b);\
(a)
=
(b);\
(c)
=
(d);\
(c)
=
(d);\
}
}
#endif
#endif
...
@@ -251,8 +251,8 @@ if((y)<(x)){\
...
@@ -251,8 +251,8 @@ if((y)<(x)){\
#define CHECKED_ALLOC(p, size)\
#define CHECKED_ALLOC(p, size)\
{\
{\
p= av_malloc(size);\
p
= av_malloc(size);\
if(p==NULL && (size)!=0){\
if
(p
==
NULL && (size)
!=
0)
{\
av_log(NULL, AV_LOG_ERROR, "Cannot allocate memory.");\
av_log(NULL, AV_LOG_ERROR, "Cannot allocate memory.");\
goto fail;\
goto fail;\
}\
}\
...
@@ -260,8 +260,8 @@ if((y)<(x)){\
...
@@ -260,8 +260,8 @@ if((y)<(x)){\
#define CHECKED_ALLOCZ(p, size)\
#define CHECKED_ALLOCZ(p, size)\
{\
{\
p= av_mallocz(size);\
p
= av_mallocz(size);\
if(p==NULL && (size)!=0){\
if
(p
==
NULL && (size)
!=
0)
{\
av_log(NULL, AV_LOG_ERROR, "Cannot allocate memory.");\
av_log(NULL, AV_LOG_ERROR, "Cannot allocate memory.");\
goto fail;\
goto fail;\
}\
}\
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment