From 37a43cfb3921a0b80157ea658d408bd08ab68306 Mon Sep 17 00:00:00 2001 From: Björn Axelsson Date: Thu, 12 Feb 2009 01:27:56 +0000 Subject: Set AVSubtitle format to 0. Neither dvdsubdec nor xsubdec intializes format to 0, but ffplay checks it before displaying subtitles (ffplay.c:1437). patch by Björn Axelsson, gecko acc.umu se MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Originally committed as revision 17170 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/xsubdec.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavcodec/xsubdec.c') diff --git a/libavcodec/xsubdec.c b/libavcodec/xsubdec.c index 0274705fb2..35b00a54b4 100644 --- a/libavcodec/xsubdec.c +++ b/libavcodec/xsubdec.c @@ -51,6 +51,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, int w, h, x, y, rlelen, i; GetBitContext gb; + sub->format = 0; + // check that at least header fits if (buf_size < 27 + 7 * 2 + 4 * 3) { av_log(avctx, AV_LOG_ERROR, "coded frame too small\n"); -- cgit v1.2.3