diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-07-11 07:45:49 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-07-11 07:45:49 +0000 |
commit | fd9f3153399f885d76fc4ca2462958d17122eef9 (patch) | |
tree | 26eaa52a31f3f836f544cfdf4516c9d405e9bad0 /libavcodec/dv.c | |
parent | 58607ca7d23bd71ce7df2a12e99d3eee1f741dae (diff) | |
download | ffmpeg-fd9f3153399f885d76fc4ca2462958d17122eef9.tar.gz |
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
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r-- | libavcodec/dv.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |