Browse Source

avformat/au: Simplify writing string into AVBPrint

by using av_bprintf() instead of several av_bprint_append().

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
tags/n4.4
Andreas Rheinhardt 5 years ago
parent
commit
c2e17e8d84
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      libavformat/au.c

+ 2
- 4
libavformat/au.c View File

@@ -262,13 +262,11 @@ static int au_get_annotations(AVFormatContext *s, char **buffer)
if (t != NULL) {
if (cnt++)
av_bprint_chars(&bprint, '\n', 1);
av_bprint_append_data(&bprint, keys[i], strlen(keys[i]));
av_bprint_chars(&bprint, '=', 1);
av_bprint_append_data(&bprint, t->value, strlen(t->value));
av_bprintf(&bprint, "%s=%s", keys[i], t->value);
}
}
/* pad with 0's */
av_bprint_append_data(&bprint, "\0\0\0\0\0\0\0\0", 8);
av_bprint_chars(&bprint, '\0', 8);
return av_bprint_finalize(&bprint, buffer);
}



Loading…
Cancel
Save