mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
support colon-separated rates patch by Roine Gustafsson <roine AT users DOT sourceforge DOT net>
Originally committed as revision 3892 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
501866a1fa
commit
888053179c
@ -2487,6 +2487,8 @@ int parse_frame_rate(int *frame_rate, int *frame_rate_base, const char *arg)
|
||||
|
||||
/* Then, we try to parse it as fraction */
|
||||
cp = strchr(arg, '/');
|
||||
if (!cp)
|
||||
cp = strchr(arg, ':');
|
||||
if (cp) {
|
||||
char* cpp;
|
||||
*frame_rate = strtol(arg, &cpp, 10);
|
||||
|
Loading…
Reference in New Issue
Block a user