Lines Matching defs:entry
160 AVDictionaryEntry *entry;
174 if ((entry = av_dict_get(options, option, NULL, 0))) { \
175 field = entry->value; \
182 entry->value = NULL; /* prevent it from being freed */)
198 entry = NULL;
199 while ((entry = av_dict_get(options, "bsfs", entry, AV_DICT_IGNORE_SUFFIX))) {
201 av_dict_set(&bsf_options, entry->key + 4, entry->value, 0);
202 av_dict_set(&options, entry->key, NULL, 0);
317 entry = NULL;
318 while (entry = av_dict_get(bsf_options, "", NULL, AV_DICT_IGNORE_SUFFIX)) {
319 const char *spec = entry->key;
324 "are allowed\n", entry->key, *spec, slave_bsfs_spec_sep);
336 "output '%s'\n", spec, entry->key, filename);
342 "output '%s'\n", spec, entry->value, i, filename);
349 ret = av_bsf_list_parse_str(entry->value, &tee_slave->bsfs[i]);
353 "stream %d of slave output '%s'\n", entry->value, i, filename);
359 av_dict_set(&bsf_options, entry->key, NULL, 0);
394 entry = NULL;
395 while ((entry = av_dict_get(options, "", entry, AV_DICT_IGNORE_SUFFIX)))
396 av_log(avf2, AV_LOG_ERROR, "Unknown option '%s'\n", entry->key);