diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-09-05 19:23:32 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-09-05 19:23:32 +0000 |
commit | 2c00106c2b07d38ec90cc9906aef2437df6f1ad7 (patch) | |
tree | bdbc23d9cb776b0d73d4578fb309daee9269f2c3 /libavformat/utils.c | |
parent | 577cd173e3881cbb5f7e5386c04d5384a7bf9408 (diff) | |
download | ffmpeg-2c00106c2b07d38ec90cc9906aef2437df6f1ad7.tar.gz |
ignore index parameter to ignore the ODML index in avi
Originally committed as revision 6177 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index dfb7cb88a6..ea447c1fa7 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -466,6 +466,9 @@ static const char* format_to_name(void* ptr) static const AVOption options[]={ {"probesize", NULL, OFFSET(probesize), FF_OPT_TYPE_INT, DEFAULT, 32, INT_MAX, D}, +{"fflags", NULL, OFFSET(flags), FF_OPT_TYPE_FLAGS, DEFAULT, INT_MIN, INT_MAX, D, "fflags"}, +{"ignidx", "ignore index", 0, FF_OPT_TYPE_CONST, AVFMT_FLAG_IGNIDX, INT_MIN, INT_MAX, D, "fflags"}, +{"genpts", "generate pts", 0, FF_OPT_TYPE_CONST, AVFMT_FLAG_GENPTS, INT_MIN, INT_MAX, D, "fflags"}, {NULL}, }; |