Lines Matching refs:annotations
252 static int au_get_annotations(AVFormatContext *s, AVBPrint *annotations)
269 av_bprint_chars(annotations, '\n', 1);
270 av_bprintf(annotations, "%s=%s", keys[i], t->value);
275 av_bprint_chars(annotations, '\0', 8);
276 return av_bprint_is_complete(annotations) ? 0 : AVERROR(ENOMEM);
285 AVBPrint annotations;
298 av_bprint_init(&annotations, 0, INT_MAX - 24);
299 ret = au_get_annotations(s, &annotations);
302 au->header_size = 24 + annotations.len & ~7;
310 avio_write(pb, annotations.str, annotations.len & ~7);
313 av_bprint_finalize(&annotations, NULL);