[FFmpeg-devel] [PATCH v1 04/11] lavc/dvdsubenc: Replace magic number by micro for bprint init
Jun Zhao
mypopydev at gmail.com
Sun Jun 10 12:16:53 EEST 2018
Replace magic number by micro for bprint init.
Signed-off-by: Jun Zhao <mypopydev at gmail.com>
---
libavcodec/dvdsubenc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/dvdsubenc.c b/libavcodec/dvdsubenc.c
index 26afdc6..ff95ed2 100644
--- a/libavcodec/dvdsubenc.c
+++ b/libavcodec/dvdsubenc.c
@@ -438,7 +438,7 @@ static int dvdsub_init(AVCodecContext *avctx)
av_assert0(sizeof(dvdc->global_palette) == sizeof(default_palette));
memcpy(dvdc->global_palette, default_palette, sizeof(dvdc->global_palette));
- av_bprint_init(&extradata, 0, 1);
+ av_bprint_init(&extradata, 0, AV_BPRINT_SIZE_AUTOMATIC);
if (avctx->width && avctx->height)
av_bprintf(&extradata, "size: %dx%d\n", avctx->width, avctx->height);
av_bprintf(&extradata, "palette:");
--
2.7.4
More information about the ffmpeg-devel
mailing list