diff options
Diffstat (limited to 'libavutil/opt.h')
-rw-r--r-- | libavutil/opt.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavutil/opt.h b/libavutil/opt.h index 018d8a2b4f..b04c7905d6 100644 --- a/libavutil/opt.h +++ b/libavutil/opt.h @@ -67,6 +67,9 @@ typedef struct AVOption { union { double dbl; const char *str; + /* TODO those are unused now */ + int64_t i64; + AVRational q; } default_val; double min; ///< minimum valid value for the option double max; ///< maximum valid value for the option |