Lines Matching defs:options
67 static const AVOption options[] = {
70 {"fifo_options", "fifo pseudo-muxer options", OFFSET(fifo_options),
78 .option = options,
102 * options when there is one */
159 AVDictionary *options = NULL, *bsf_options = NULL;
170 if ((ret = ff_tee_parse_slave_options(avf, slave, &options, &filename)) < 0)
174 if ((entry = av_dict_get(options, option, NULL, 0))) { \
177 av_dict_set(&options, option, NULL, 0); \
191 "valid options are 'abort' and 'ignore'\n"););
194 av_log(avf, AV_LOG_ERROR, "Error parsing fifo options: %s\n",
199 while ((entry = av_dict_get(options, "bsfs", entry, AV_DICT_IGNORE_SUFFIX))) {
202 av_dict_set(&options, entry->key, NULL, 0);
207 if (options) {
209 ret = av_dict_get_string(options, &format_options_str, '=', ':');
227 av_dict_free(&options);
228 options = tee_slave->fifo_options;
297 ret = ff_format_output_open(avf2, filename, &options);
304 if ((ret = avformat_write_header(avf2, &options)) < 0) {
393 if (options) {
395 while ((entry = av_dict_get(options, "", entry, AV_DICT_IGNORE_SUFFIX)))
404 av_dict_free(&options);