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
1fcf2432
Commit
1fcf2432
authored
Jul 30, 2016
by
Timothy Gu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mathematics: Make function prototypes identical to definitions
Doxygen gets confused by this.
parent
5aede051
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
mathematics.h
libavutil/mathematics.h
+2
-2
No files found.
libavutil/mathematics.h
View file @
1fcf2432
...
...
@@ -97,7 +97,7 @@ int64_t av_rescale(int64_t a, int64_t b, int64_t c) av_const;
* @return rescaled value a, or if AV_ROUND_PASS_MINMAX is set and a is
* INT64_MIN or INT64_MAX then a is passed through unchanged.
*/
int64_t
av_rescale_rnd
(
int64_t
a
,
int64_t
b
,
int64_t
c
,
enum
AVRounding
)
av_const
;
int64_t
av_rescale_rnd
(
int64_t
a
,
int64_t
b
,
int64_t
c
,
enum
AVRounding
rnd
)
av_const
;
/**
* Rescale a 64-bit integer by 2 rational numbers.
...
...
@@ -111,7 +111,7 @@ int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq) av_const;
* INT64_MIN or INT64_MAX then a is passed through unchanged.
*/
int64_t
av_rescale_q_rnd
(
int64_t
a
,
AVRational
bq
,
AVRational
cq
,
enum
AVRounding
)
av_const
;
enum
AVRounding
rnd
)
av_const
;
/**
* Compare 2 timestamps each in its own timebases.
...
...
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