From e811fe62a60e62f2666d913c20bc1e7f88e5a59c Mon Sep 17 00:00:00 2001 From: Laurent Aimar Date: Sun, 5 Jun 2011 16:44:08 +0200 Subject: [PATCH] Fixed compilation with avcodec without MT support. --- modules/codec/avcodec/video.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/codec/avcodec/video.c b/modules/codec/avcodec/video.c index 5b13a5ad8b..8cb66ccacc 100644 --- a/modules/codec/avcodec/video.c +++ b/modules/codec/avcodec/video.c @@ -349,11 +349,13 @@ int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context, i_codec_id == CODEC_ID_H264 || i_codec_id == CODEC_ID_VC1 || i_codec_id == CODEC_ID_WMV3) ) { +#ifdef HAVE_AVCODEC_MT if( p_sys->p_context->thread_type & FF_THREAD_FRAME ) { msg_Warn( p_dec, "threaded frame decoding is not compatible with ffmpeg-hw, disabled" ); p_sys->p_context->thread_type &= ~FF_THREAD_FRAME; } +#endif p_sys->p_context->get_format = ffmpeg_GetFormat; } #endif -- 2.11.4.GIT