diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2005-06-03 14:07:47 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2005-06-03 14:07:47 +0000 |
commit | ae27975dfe898e6f7a3c7eaf57fee6b43ff23888 (patch) | |
tree | 1cfa5746c5170fcf32cb22f5c6bf777db17b39f5 /cmdutils.h | |
parent | 8b475508d4b3524e052c6d4e43773f275e8f7aec (diff) | |
download | ffmpeg-ae27975dfe898e6f7a3c7eaf57fee6b43ff23888.tar.gz |
subtitle option
Originally committed as revision 4350 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'cmdutils.h')
-rw-r--r-- | cmdutils.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmdutils.h b/cmdutils.h index 1246b4de5a..8aeec3d214 100644 --- a/cmdutils.h +++ b/cmdutils.h @@ -13,7 +13,8 @@ typedef struct { #define OPT_GRAB 0x0040 #define OPT_INT 0x0080 #define OPT_FLOAT 0x0100 - union { +#define OPT_SUBTITLE 0x0200 + union { void (*func_arg)(const char *); int *int_arg; char **str_arg; |