comparison utils.c @ 1294:12398b868e18 libavformat

ignore index parameter to ignore the ODML index in avi
author michael
date Tue, 05 Sep 2006 19:23:32 +0000
parents 185190bdc185
children c87b57a53062
comparison
equal deleted inserted replaced
1293:1816e097c39f 1294:12398b868e18
464 #define E AV_OPT_FLAG_ENCODING_PARAM 464 #define E AV_OPT_FLAG_ENCODING_PARAM
465 #define D AV_OPT_FLAG_DECODING_PARAM 465 #define D AV_OPT_FLAG_DECODING_PARAM
466 466
467 static const AVOption options[]={ 467 static const AVOption options[]={
468 {"probesize", NULL, OFFSET(probesize), FF_OPT_TYPE_INT, DEFAULT, 32, INT_MAX, D}, 468 {"probesize", NULL, OFFSET(probesize), FF_OPT_TYPE_INT, DEFAULT, 32, INT_MAX, D},
469 {"fflags", NULL, OFFSET(flags), FF_OPT_TYPE_FLAGS, DEFAULT, INT_MIN, INT_MAX, D, "fflags"},
470 {"ignidx", "ignore index", 0, FF_OPT_TYPE_CONST, AVFMT_FLAG_IGNIDX, INT_MIN, INT_MAX, D, "fflags"},
471 {"genpts", "generate pts", 0, FF_OPT_TYPE_CONST, AVFMT_FLAG_GENPTS, INT_MIN, INT_MAX, D, "fflags"},
469 {NULL}, 472 {NULL},
470 }; 473 };
471 474
472 static const AVClass av_format_context_class = { "AVFormatContext", format_to_name, options }; 475 static const AVClass av_format_context_class = { "AVFormatContext", format_to_name, options };
473 476