From 0f01602362f20bbc819dd07926cd2bb0a89a6c4d Mon Sep 17 00:00:00 2001 From: Alexander Strange Date: Wed, 15 Dec 2010 00:22:47 +0000 Subject: SVQ3: Allow decoding if thread_count is > 1 svq3 still doesn't support multithreading, but it's simpler for clients if they can enable threading for all codecs by default. Originally committed as revision 26015 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/svq3.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'libavcodec/svq3.c') diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c index df2acd8..4a4a1c5 100644 --- a/libavcodec/svq3.c +++ b/libavcodec/svq3.c @@ -796,11 +796,6 @@ static av_cold int svq3_decode_init(AVCodecContext *avctx) unsigned char *extradata; unsigned int size; - if(avctx->thread_count > 1){ - av_log(avctx, AV_LOG_ERROR, "SVQ3 does not support multithreaded decoding, patch welcome! (check latest SVN too)\n"); - return -1; - } - if (ff_h264_decode_init(avctx) < 0) return -1; -- cgit v1.1