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
94a417ac
Commit
94a417ac
authored
Dec 12, 2013
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mathematics: remove asserts from av_rescale_rnd()
It is a public function, it must not assert on its parameters.
parent
24057c83
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
mathematics.c
libavutil/mathematics.c
+3
-4
No files found.
libavutil/mathematics.c
View file @
94a417ac
...
...
@@ -23,7 +23,6 @@
* miscellaneous math routines and tables
*/
#include <assert.h>
#include <stdint.h>
#include <limits.h>
...
...
@@ -58,9 +57,9 @@ int64_t av_gcd(int64_t a, int64_t b){
int64_t
av_rescale_rnd
(
int64_t
a
,
int64_t
b
,
int64_t
c
,
enum
AVRounding
rnd
){
int64_t
r
=
0
;
assert
(
c
>
0
);
assert
(
b
>=
0
);
assert
((
unsigned
)
rnd
<=
5
&&
rnd
!=
4
)
;
if
(
c
<=
0
||
b
<
0
||
rnd
==
4
||
rnd
>
5
)
return
INT64_MIN
;
if
(
a
<
0
&&
a
!=
INT64_MIN
)
return
-
av_rescale_rnd
(
-
a
,
b
,
c
,
rnd
^
((
rnd
>>
1
)
&
1
));
...
...
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