From 4a815a7f6493addd7f268a557a431a2afe60679f Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 9 May 2007 09:26:06 +0000 Subject: Allow conditional compilation of H.263-related decoders. Originally committed as revision 8949 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/wmv2.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavcodec/wmv2.c') diff --git a/libavcodec/wmv2.c b/libavcodec/wmv2.c index d57eaa5e4a..8162f642eb 100644 --- a/libavcodec/wmv2.c +++ b/libavcodec/wmv2.c @@ -835,6 +835,7 @@ static int wmv2_decode_init(AVCodecContext *avctx){ return 0; } +#ifdef CONFIG_WMV2_DECODER AVCodec wmv2_decoder = { "wmv2", CODEC_TYPE_VIDEO, @@ -846,6 +847,7 @@ AVCodec wmv2_decoder = { ff_h263_decode_frame, CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1, }; +#endif #ifdef CONFIG_ENCODERS AVCodec wmv2_encoder = { -- cgit v1.2.3