Lines Matching defs:value
280 uint8_t *value;
284 value = av_malloc(buflen);
285 if (!value)
289 if ((ret = get_asf_string(pb, val_len, value, buflen)) < 0)
291 if (av_dict_set(met, name, value, 0) < 0)
299 if ((ret = avio_read(pb, value, val_len)) < 0)
302 value[ret] = '\0';
304 value[2 * val_len - 1] = '\0';
305 snprintf(buf, sizeof(buf), "%s", value);
309 av_freep(&value);
314 av_freep(&value);
317 static int asf_read_generic_value(AVIOContext *pb, int type, uint64_t *value)
322 *value = avio_rl16(pb);
325 *value = avio_rl32(pb);
328 *value = avio_rl64(pb);
331 *value = avio_rl16(pb);
344 uint64_t value;
348 ret = asf_read_generic_value(pb, type, &value);
352 snprintf(buf, sizeof(buf), "%"PRIu64, value);
444 uint64_t value = 0;
447 ret = asf_read_generic_value(pb, type, &value);
453 asf->asf_sd[st_num].aspect_ratio.num = value;
455 asf->asf_sd[st_num].aspect_ratio.den = value;
845 "Datapackets value! num of packets %"PRIu64" total num %"PRIu64".\n",