Lines Matching defs:value
39 * @brief Simple key:value store
42 * Dictionaries are used for storing key:value pairs. To create
57 char *v = av_strdup("value"); // you can avoid copying them like this
72 #define AV_DICT_DONT_STRDUP_VAL 8 /**< Take ownership of a value that's been
81 char *value;
89 * The returned entry key or value must not be changed, or it will
124 * @param value entry value to add to *pm (will be av_strduped or added as a new key depending on flags).
125 * Passing a NULL value will cause an existing entry to be deleted.
128 int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags);
131 * Convenience wrapper for av_dict_set that converts the value to a string
136 int av_dict_set_int(AVDictionary **pm, const char *key, int64_t value, int flags);
139 * Parse the key/value pairs list and add the parsed entries to a dictionary.
145 * key from value
150 * are ignored since the key/value tokens will always
186 * @param[in] key_val_sep character used to separate key from value