From 17e40236cb36ed27632159b2821ce0c42dc301e9 Mon Sep 17 00:00:00 2001 From: Nicolas George Date: Tue, 7 Aug 2012 19:05:43 +0200 Subject: [PATCH] dvdsubenc: set frame size in extradata. --- libavcodec/dvdsubenc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/dvdsubenc.c b/libavcodec/dvdsubenc.c index 1939cb86b4..7db472693d 100644 --- a/libavcodec/dvdsubenc.c +++ b/libavcodec/dvdsubenc.c @@ -398,6 +398,8 @@ static int dvdsub_init(AVCodecContext *avctx) memcpy(dvdc->global_palette, default_palette, sizeof(dvdc->global_palette)); av_bprint_init(&extradata, 0, 1); + if (avctx->width && avctx->height) + av_bprintf(&extradata, "size: %dx%d\n", avctx->width, avctx->height); av_bprintf(&extradata, "palette:"); for (i = 0; i < 16; i++) av_bprintf(&extradata, " %06"PRIx32"%c", -- 2.11.0