]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/qpeg.c
Change whitespace placement a little to improve readabiliy slightly.
[ffmpeg] / libavcodec / qpeg.c
index 20f166329d9fffd80331de9f7b437502ce2dca67..6b5d8732d955abbc4323dc9b2898bedf674231bd 100644 (file)
@@ -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);