]> git.sesse.net Git - ffmpeg/commitdiff
ass: use av_asprintf() instead of a temporary stack buffer.
authorClément Bœsch <ubitux@gmail.com>
Sat, 28 Jan 2012 17:13:07 +0000 (18:13 +0100)
committerClément Bœsch <ubitux@gmail.com>
Mon, 30 Jan 2012 22:28:26 +0000 (23:28 +0100)
libavcodec/ass.c

index cb0babf2c80824c42df57f908708e6b6e1ffec7b..8c94d724ebe12f9e8090edf5b2c74731f2f8dac3 100644 (file)
@@ -29,9 +29,7 @@ int ff_ass_subtitle_header(AVCodecContext *avctx,
                            int bold, int italic, int underline,
                            int alignment)
 {
-    char header[512];
-
-    snprintf(header, sizeof(header),
+    avctx->subtitle_header = av_asprintf(
              "[Script Info]\r\n"
              "ScriptType: v4.00+\r\n"
              "\r\n"
@@ -44,7 +42,6 @@ int ff_ass_subtitle_header(AVCodecContext *avctx,
              font, font_size, color, color, back_color, back_color,
              -bold, -italic, -underline, alignment);
 
-    avctx->subtitle_header = av_strdup(header);
     if (!avctx->subtitle_header)
         return AVERROR(ENOMEM);
     avctx->subtitle_header_size = strlen(avctx->subtitle_header);