Lines Matching refs:value
659 if ((ret = av_opt_set(*wctx, opt->key, opt->value, AV_OPT_SEARCH_CHILDREN)) < 0) {
660 av_log(*wctx, AV_LOG_ERROR, "Failed to set option '%s' with value '%s' provided to writer context\n",
661 opt->key, opt->value);
853 "Invalid key=value string combination %s=%s in section %s\n",
1086 static void default_print_str(WriterContext *wctx, const char *key, const char *value)
1092 writer_printf(wctx, "%s\n", value);
1095 static void default_print_int(WriterContext *wctx, const char *key, long long int value)
1101 writer_printf(wctx, "%lld\n", value);
1260 static void compact_print_str(WriterContext *wctx, const char *key, const char *value)
1269 writer_put_str(wctx, compact->escape_str(&buf, value, compact->item_sep, wctx));
1273 static void compact_print_int(WriterContext *wctx, const char *key, long long int value)
1280 writer_printf(wctx, "%lld", value);
1421 static void flat_print_int(WriterContext *wctx, const char *key, long long int value)
1423 writer_printf(wctx, "%s%s=%lld\n", wctx->section_pbuf[wctx->level].str, key, value);
1426 static void flat_print_str(WriterContext *wctx, const char *key, const char *value)
1435 writer_printf(wctx, "\"%s\"\n", flat_escape_value_str(&buf, value));
1528 static void ini_print_str(WriterContext *wctx, const char *key, const char *value)
1535 writer_printf(wctx, "%s\n", ini_escape_str(&buf, value));
1539 static void ini_print_int(WriterContext *wctx, const char *key, long long int value)
1541 writer_printf(wctx, "%s=%lld\n", key, value);
1668 const char *key, const char *value)
1675 writer_printf(wctx, " \"%s\"", json_escape_str(&buf, value, wctx));
1679 static void json_print_str(WriterContext *wctx, const char *key, const char *value)
1689 json_print_item_str(wctx, key, value);
1692 static void json_print_int(WriterContext *wctx, const char *key, long long int value)
1705 writer_printf(wctx, "\"%s\": %lld", json_escape_str(&buf, key, wctx), value);
1826 static void xml_print_str(WriterContext *wctx, const char *key, const char *value)
1842 av_bprint_escape(&buf, value, NULL,
1844 writer_printf(wctx, " value=\"%s\"/>\n", buf.str);
1849 av_bprint_escape(&buf, value, NULL,
1857 static void xml_print_int(WriterContext *wctx, const char *key, long long int value)
1861 writer_printf(wctx, "%s=\"%lld\"", key, value);
1946 if ((ret = print_str_validate(tag->key, tag->value)) < 0)
2652 print_str("value", tcbuf);
2685 print_str(tag->key, tag->value);
3819 "Invalid or negative value '%s' for duration number of frames\n", p);