[SCM] libav/experimental: Check that palctrl is available on init instead of crashing when trying to use it on decode. Fixes mpeg2/smclockmpeg2.avi.2.1 from issue 1240.
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 16:48:35 UTC 2013
The following commit has been merged in the experimental branch:
commit 5be5daf1e5929192650dc17eab02c26447df13d1
Author: Reimar Döffinger <Reimar.Doeffinger at gmx.de>
Date: Sun Jul 5 12:14:05 2009 +0000
Check that palctrl is available on init instead of crashing when trying to use
it on decode.
Fixes mpeg2/smclockmpeg2.avi.2.1 from issue 1240.
Originally committed as revision 19347 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavcodec/qpeg.c b/libavcodec/qpeg.c
index 20f1663..6b5d873 100644
--- a/libavcodec/qpeg.c
+++ b/libavcodec/qpeg.c
@@ -289,6 +289,10 @@ static int decode_frame(AVCodecContext *avctx,
static av_cold int decode_init(AVCodecContext *avctx){
QpegContext * const a = avctx->priv_data;
+ if (!avctx->palctrl) {
+ av_log(avctx, AV_LOG_FATAL, "Missing required palette via palctrl\n");
+ return -1;
+ }
a->avctx = avctx;
avctx->pix_fmt= PIX_FMT_PAL8;
a->refdata = av_malloc(avctx->width * avctx->height);
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list