# HG changeset patch # User iive # Date 1235032787 0 # Node ID a24c0495693085d01a4f8c5694dfce7cff99f94c # Parent dc19e4d7d0eb00263838cdcf94272aa0537031d1 Exit with error if MPV_common_init() is called with PIX_FMT_NONE. Give nice error message to fix codecs that call it this way. diff -r dc19e4d7d0eb -r a24c04956930 mpegvideo.c --- a/mpegvideo.c Thu Feb 19 00:54:59 2009 +0000 +++ b/mpegvideo.c Thu Feb 19 08:39:47 2009 +0000 @@ -402,6 +402,11 @@ s->mb_height = (s->height + 15) / 16; + if(s->avctx->pix_fmt == PIX_FMT_NONE){ + av_log(s->avctx, AV_LOG_ERROR, "decoding to PIX_FMT_NONE is not supported.\n"); + return -1; + } + if(s->avctx->thread_count > MAX_THREADS || (s->avctx->thread_count > s->mb_height && s->mb_height)){ av_log(s->avctx, AV_LOG_ERROR, "too many threads\n"); return -1;