Lines Matching refs:pm
70 int av_dict_set(AVDictionary **pm, const char *key, const char *value,
73 AVDictionary *m = *pm;
89 m = *pm = av_mallocz(sizeof(*m));
132 av_freep(pm);
140 av_freep(pm);
147 int av_dict_set_int(AVDictionary **pm, const char *key, int64_t value,
153 return av_dict_set(pm, key, valuestr, flags);
156 static int parse_key_value_pair(AVDictionary **pm, const char **buf,
170 ret = av_dict_set(pm, key, val, flags);
180 int av_dict_parse_string(AVDictionary **pm, const char *str,
193 if ((ret = parse_key_value_pair(pm, &str, key_val_sep, pairs_sep, flags)) < 0)
203 void av_dict_free(AVDictionary **pm)
205 AVDictionary *m = *pm;
214 av_freep(pm);