• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/

Lines Matching +defs:code +defs:key

429             if ((ret = av_opt_set(*wctx, opt->key, opt->value, AV_OPT_SEARCH_CHILDREN)) < 0) {
431 opt->key, opt->value);
446 int32_t code;
447 ret = av_utf8_decode(&code, &p, endp, (*wctx)->string_validation_utf8_flags);
517 const char *key, long long int val)
521 if (section->show_all_entries || av_dict_get(section->entries_to_show, key, NULL, 0)) {
522 wctx->writer->print_integer(wctx, key, val);
537 uint32_t code;
541 if (av_utf8_decode(&code, &p, endp, wctx->string_validation_utf8_flags) < 0) {
586 const char *key, const char *val, int flags)
595 if (section->show_all_entries || av_dict_get(section->entries_to_show, key, NULL, 0)) {
598 ret = validate_string(wctx, &key1, key);
606 "Invalid key=value string combination %s=%s in section %s\n",
607 key, val, section->unique_name);
612 wctx->writer->print_string(wctx, key, val);
622 const char *key, AVRational q, char sep)
627 writer_print_string(wctx, key, buf.str, 0);
630 static void writer_print_time(WriterContext *wctx, const char *key,
636 writer_print_string(wctx, key, "N/A", PRINT_STRING_OPT);
643 writer_print_string(wctx, key, buf, 0);
647 static void writer_print_ts(WriterContext *wctx, const char *key, int64_t ts, int is_duration)
650 writer_print_string(wctx, key, "N/A", PRINT_STRING_OPT);
652 writer_print_integer(wctx, key, ts);
739 { "nokey", "force no key printing", OFFSET(nokey), AV_OPT_TYPE_INT, {.i64=0}, 0, 1 },
740 { "nk", "force no key printing", OFFSET(nokey), AV_OPT_TYPE_INT, {.i64=0}, 0, 1 },
794 static void default_print_str(WriterContext *wctx, const char *key, const char *value)
799 printf("%s%s=", wctx->section_pbuf[wctx->level].str, key);
803 static void default_print_int(WriterContext *wctx, const char *key, long long int value)
808 printf("%s%s=", wctx->section_pbuf[wctx->level].str, key);
893 {"nokey", "force no key printing", OFFSET(nokey), AV_OPT_TYPE_INT, {.i64=0}, 0, 1 },
894 {"nk", "force no key printing", OFFSET(nokey), AV_OPT_TYPE_INT, {.i64=0}, 0, 1 },
966 static void compact_print_str(WriterContext *wctx, const char *key, const char *value)
973 printf("%s%s=", wctx->section_pbuf[wctx->level].str, key);
979 static void compact_print_int(WriterContext *wctx, const char *key, long long int value)
985 printf("%s%s=", wctx->section_pbuf[wctx->level].str, key);
1009 {"nokey", "force no key printing", OFFSET(nokey), AV_OPT_TYPE_INT, {.i64=1}, 0, 1 },
1010 {"nk", "force no key printing", OFFSET(nokey), AV_OPT_TYPE_INT, {.i64=1}, 0, 1 },
1127 static void flat_print_int(WriterContext *wctx, const char *key, long long int value)
1129 printf("%s%s=%lld\n", wctx->section_pbuf[wctx->level].str, key, value);
1132 static void flat_print_str(WriterContext *wctx, const char *key, const char *value)
1139 printf("%s=", flat_escape_key_str(&buf, key, flat->sep));
1234 static void ini_print_str(WriterContext *wctx, const char *key, const char *value)
1239 printf("%s=", ini_escape_str(&buf, key));
1245 static void ini_print_int(WriterContext *wctx, const char *key, long long int value)
1247 printf("%s=%lld\n", key, value);
1373 const char *key, const char *value)
1378 printf("\"%s\":", json_escape_str(&buf, key, wctx));
1384 static void json_print_str(WriterContext *wctx, const char *key, const char *value)
1392 json_print_item_str(wctx, key, value);
1395 static void json_print_int(WriterContext *wctx, const char *key, long long int value)
1406 printf("\"%s\": %lld", json_escape_str(&buf, key, wctx), value);
1552 static void xml_print_str(WriterContext *wctx, const char *key, const char *value)
1562 printf("<%s key=\"%s\"",
1563 section->element_name, xml_escape_str(&buf, key, wctx));
1569 printf("%s=\"%s\"", key, xml_escape_str(&buf, value, wctx));
1575 static void xml_print_int(WriterContext *wctx, const char *key, long long int value)
1579 printf("%s=\"%lld\"", key, value);
1654 if ((ret = print_str_validate(tag->key, tag->value)) < 0)
2305 print_int("code", err);
2323 av_log(NULL, AV_LOG_ERROR, "Option %s not found.\n", t->key);
2363 t->key, stream->index);