Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
99afec08
Commit
99afec08
authored
Oct 09, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avutil/softfloat: add some asserts
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
44198a72
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
softfloat.h
libavutil/softfloat.h
+4
-0
No files found.
libavutil/softfloat.h
View file @
99afec08
...
@@ -24,6 +24,8 @@
...
@@ -24,6 +24,8 @@
#include <stdint.h>
#include <stdint.h>
#include "common.h"
#include "common.h"
#include "avassert.h"
#define MIN_EXP -126
#define MIN_EXP -126
#define MAX_EXP 126
#define MAX_EXP 126
#define ONE_BITS 29
#define ONE_BITS 29
...
@@ -61,6 +63,7 @@ static inline av_const SoftFloat av_normalize1_sf(SoftFloat a){
...
@@ -61,6 +63,7 @@ static inline av_const SoftFloat av_normalize1_sf(SoftFloat a){
a
.
exp
++
;
a
.
exp
++
;
a
.
mant
>>=
1
;
a
.
mant
>>=
1
;
}
}
av_assert2
(
a
.
mant
<
0x40000000
&&
a
.
mant
>
-
0x40000000
);
return
a
;
return
a
;
#elif 1
#elif 1
int
t
=
a
.
mant
+
0x40000000
<
0
;
int
t
=
a
.
mant
+
0x40000000
<
0
;
...
@@ -78,6 +81,7 @@ static inline av_const SoftFloat av_normalize1_sf(SoftFloat a){
...
@@ -78,6 +81,7 @@ static inline av_const SoftFloat av_normalize1_sf(SoftFloat a){
*/
*/
static
inline
av_const
SoftFloat
av_mul_sf
(
SoftFloat
a
,
SoftFloat
b
){
static
inline
av_const
SoftFloat
av_mul_sf
(
SoftFloat
a
,
SoftFloat
b
){
a
.
exp
+=
b
.
exp
;
a
.
exp
+=
b
.
exp
;
av_assert2
((
int32_t
)((
a
.
mant
*
(
int64_t
)
b
.
mant
)
>>
ONE_BITS
)
==
(
a
.
mant
*
(
int64_t
)
b
.
mant
)
>>
ONE_BITS
);
a
.
mant
=
(
a
.
mant
*
(
int64_t
)
b
.
mant
)
>>
ONE_BITS
;
a
.
mant
=
(
a
.
mant
*
(
int64_t
)
b
.
mant
)
>>
ONE_BITS
;
return
av_normalize1_sf
(
a
);
return
av_normalize1_sf
(
a
);
}
}
...
...
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