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
67dd33f9
Commit
67dd33f9
authored
Mar 24, 2006
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use av_d2q to parse frame rate
Originally committed as revision 5209 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
0dd39bfe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
utils.c
libavformat/utils.c
+3
-2
No files found.
libavformat/utils.c
View file @
67dd33f9
...
...
@@ -2742,8 +2742,9 @@ int parse_frame_rate(int *frame_rate, int *frame_rate_base, const char *arg)
}
else
{
/* Finally we give up and parse it as double */
*
frame_rate_base
=
DEFAULT_FRAME_RATE_BASE
;
//FIXME use av_d2q()
*
frame_rate
=
(
int
)(
strtod
(
arg
,
0
)
*
(
*
frame_rate_base
)
+
0
.
5
);
AVRational
time_base
=
av_d2q
(
strtod
(
arg
,
0
),
DEFAULT_FRAME_RATE_BASE
);
*
frame_rate_base
=
time_base
.
den
;
*
frame_rate
=
time_base
.
num
;
}
if
(
!*
frame_rate
||
!*
frame_rate_base
)
return
-
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