Lines Matching defs:value
49 * The value of this attribute must be equal to or greater than the sum of the previous S
51 * If the value of the attribute is greater than what is expressed by the previous S element,
53 * If not present then the value shall be assumed to be zero for the first S element
54 * and for the subsequent S elements, the value shall be assumed to be the sum of
61 * the same duration expressed by the value of @duration. This value is zero-based
62 * (e.g. a value of three means four Segments in the contiguous series).
66 * specifies the Segment duration, in units of the value of the @timescale.
216 float value = 0;
226 if (sscanf(ptr, "%f%c%n", &value, &type, &size) != 2) {
232 days = (uint32_t)value;
235 hours = (uint32_t)value;
238 mins = (uint32_t)value;
241 secs = (uint32_t)value;
964 val = xmlGetProp(adaptionset_supplementalproperty_node,"value");
966 av_log(s, AV_LOG_ERROR, "Missing value attribute in adaptionset_supplementalproperty_node\n");
2015 static void move_metadata(AVStream *st, const char *key, char **value)
2017 if (*value) {
2018 av_dict_set(&st->metadata, key, *value, AV_DICT_DONT_STRDUP_VAL);
2019 *value = NULL;