summaryrefslogtreecommitdiff
path: root/libavcore
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-10-04 13:41:04 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-10-04 13:41:04 +0000
commitbc12b3b11bc814f6e3f788d38de29f743d31f644 (patch)
treedc22d6b62c540718cc07e700502d5daf1d760ddc /libavcore
parent6b4ed22f7512056f47bc7f39cd16bbbb83b2781d (diff)
Use av_parse_and_eval_expr() in av_parse_video_rate(), simplify.
Originally committed as revision 25333 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcore')
-rw-r--r--libavcore/avcore.h2
-rw-r--r--libavcore/parseutils.c23
2 files changed, 8 insertions, 17 deletions
diff --git a/libavcore/avcore.h b/libavcore/avcore.h
index d73572e274..a77bab84f1 100644
--- a/libavcore/avcore.h
+++ b/libavcore/avcore.h
@@ -28,7 +28,7 @@
#define LIBAVCORE_VERSION_MAJOR 0
#define LIBAVCORE_VERSION_MINOR 9
-#define LIBAVCORE_VERSION_MICRO 0
+#define LIBAVCORE_VERSION_MICRO 1
#define LIBAVCORE_VERSION_INT AV_VERSION_INT(LIBAVCORE_VERSION_MAJOR, \
LIBAVCORE_VERSION_MINOR, \
diff --git a/libavcore/parseutils.c b/libavcore/parseutils.c
index b59b8190f1..f78949807d 100644
--- a/libavcore/parseutils.c
+++ b/libavcore/parseutils.c
@@ -23,6 +23,7 @@
#include "parseutils.h"
#include "libavutil/avutil.h"
+#include "libavutil/eval.h"
typedef struct {
const char *abbr;
@@ -115,9 +116,9 @@ int av_parse_video_size(int *width_ptr, int *height_ptr, const char *str)
int av_parse_video_rate(AVRational *rate, const char *arg)
{
- int i;
+ int i, ret;
int n = FF_ARRAY_ELEMS(video_rate_abbrs);
- char *cp;
+ double res;
/* First, we check our abbreviation table */
for (i = 0; i < n; ++i)
@@ -127,20 +128,10 @@ int av_parse_video_rate(AVRational *rate, const char *arg)
}
/* Then, we try to parse it as fraction */
- cp = strchr(arg, '/');
- if (!cp)
- cp = strchr(arg, ':');
- if (cp) {
- char *cpp;
- rate->num = strtol(arg, &cpp, 10);
- if (cpp != arg || cpp == cp)
- rate->den = strtol(cp+1, &cpp, 10);
- else
- rate->num = 0;
- } else {
- /* Finally we give up and parse it as double */
- *rate = av_d2q(strtod(arg, 0), 1001000);
- }
+ if ((ret = av_parse_and_eval_expr(&res, arg, NULL, NULL, NULL, NULL, NULL, NULL,
+ NULL, 0, NULL)) < 0)
+ return ret;
+ *rate = av_d2q(res, 1001000);
if (rate->num <= 0 || rate->den <= 0)
return AVERROR(EINVAL);
return 0;