summaryrefslogtreecommitdiff
path: root/cmdutils.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-08-29 09:16:42 +0200
committerAnton Khirnov <anton@khirnov.net>2011-09-05 11:15:40 +0200
commit33f75d72e6769c071899be545cc861620c88fddb (patch)
treedd21b8df9e22d37625e8747f953b42d41eb89398 /cmdutils.h
parentc5bb372e85d56df9974bd568bdb3ad70e0abae58 (diff)
avconv: move ts scale to options context.
Diffstat (limited to 'cmdutils.h')
-rw-r--r--cmdutils.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmdutils.h b/cmdutils.h
index 61cfc229b7..989d769dfe 100644
--- a/cmdutils.h
+++ b/cmdutils.h
@@ -115,6 +115,7 @@ typedef struct SpecifierOpt {
int i;
int64_t i64;
float f;
+ double dbl;
} u;
} SpecifierOpt;
@@ -140,6 +141,7 @@ typedef struct {
Implies OPT_OFFSET. Next element after the offset is
an int containing element count in the array. */
#define OPT_TIME 0x10000
+#define OPT_DOUBLE 0x20000
union {
void *dst_ptr;
int (*func_arg)(const char *, const char *);