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:
Roine Gustafsson 2005-01-27 16:11:31 +00:00 committed by François Revol
parent 501866a1fa
commit 888053179c
1 changed files with 2 additions and 0 deletions

View File

@ -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);