diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-10-08 23:48:32 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-10-09 00:56:58 +0200 |
commit | f0a6874de85fab8a9c5cb7749392f83b2aada22b (patch) | |
tree | d48ceacf340e3b81f3e96139a60fb4c5224ae0ba /libavformat/options_table.h | |
parent | e051d09c58c6f51fea0ce0dab32fe92f58211ac0 (diff) | |
download | ffmpeg-f0a6874de85fab8a9c5cb7749392f83b2aada22b.tar.gz |
avformat: Allow choosing the dump format field separator.
The default is to maintain the previous ", " for now.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/options_table.h')
-rw-r--r-- | libavformat/options_table.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/options_table.h b/libavformat/options_table.h index 71024be195..4ac8b3d20e 100644 --- a/libavformat/options_table.h +++ b/libavformat/options_table.h @@ -96,6 +96,7 @@ static const AVOption avformat_options[] = { {"unofficial", "allow unofficial extensions", 0, AV_OPT_TYPE_CONST, {.i64 = FF_COMPLIANCE_UNOFFICIAL }, INT_MIN, INT_MAX, D|E, "strict"}, {"experimental", "allow non-standardized experimental variants", 0, AV_OPT_TYPE_CONST, {.i64 = FF_COMPLIANCE_EXPERIMENTAL }, INT_MIN, INT_MAX, D|E, "strict"}, {"max_ts_probe", "maximum number of packets to read while waiting for the first timestamp", OFFSET(max_ts_probe), AV_OPT_TYPE_INT, { .i64 = 50 }, 0, INT_MAX, D }, +{"dump_separator", "set information dump field separator", OFFSET(dump_separator), AV_OPT_TYPE_STRING, {.str = ", "}, CHAR_MIN, CHAR_MAX, D|E}, {NULL}, }; |