From fd9f3153399f885d76fc4ca2462958d17122eef9 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 11 Jul 2008 07:45:49 +0000 Subject: [PATCH] Make preprocessor condition more specific and useful by changing #ifdef CONFIG_ENCODERS --> #ifdef CONFIG_DVVIDEO_ENCODER. Originally committed as revision 14165 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/dv.c b/libavcodec/dv.c index 0f2872929c..a535e189ea 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -1000,7 +1000,7 @@ static int dv_decode_mt(AVCodecContext *avctx, void* sl) return 0; } -#ifdef CONFIG_ENCODERS +#ifdef CONFIG_DVVIDEO_ENCODER static int dv_encode_mt(AVCodecContext *avctx, void* sl) { DVVideoContext *s = avctx->priv_data;