diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-08-07 19:05:43 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-08-14 11:17:45 +0200 |
commit | 17e40236cb36ed27632159b2821ce0c42dc301e9 (patch) | |
tree | 7be9f2848c528075c161fb609db09059e406752f /libavcodec/dvdsubenc.c | |
parent | b1511e00f6fefde6cb31b2e17f7812cfac1c8bd6 (diff) | |
download | ffmpeg-17e40236cb36ed27632159b2821ce0c42dc301e9.tar.gz |
dvdsubenc: set frame size in extradata.
Diffstat (limited to 'libavcodec/dvdsubenc.c')
-rw-r--r-- | libavcodec/dvdsubenc.c | 2 |
1 files changed, 2 insertions, 0 deletions
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", |