diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-08-29 09:16:42 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-09-05 11:15:40 +0200 |
commit | 33f75d72e6769c071899be545cc861620c88fddb (patch) | |
tree | dd21b8df9e22d37625e8747f953b42d41eb89398 /cmdutils.h | |
parent | c5bb372e85d56df9974bd568bdb3ad70e0abae58 (diff) | |
download | ffmpeg-33f75d72e6769c071899be545cc861620c88fddb.tar.gz |
avconv: move ts scale to options context.
Diffstat (limited to 'cmdutils.h')
-rw-r--r-- | cmdutils.h | 2 |
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 *); |