diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-02-27 00:24:49 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-02-27 00:24:49 +0000 |
commit | e7ebecbf445681e228558a02551c5028db50236d (patch) | |
tree | 9576452db56cf4d0cf4fbad681cdfde0807e5baf | |
parent | 2bfdde24350b40d6f3ad6979d49e19ffab8898c3 (diff) | |
download | ffmpeg-e7ebecbf445681e228558a02551c5028db50236d.tar.gz |
The Snow DEcoding routines should be under CONFIG_SNOW_DECODER.
Originally committed as revision 8140 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/dsputil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index eda493d20c..6aa54538ec 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -4097,7 +4097,7 @@ void dsputil_init(DSPContext* c, AVCodecContext *avctx) c->try_8x8basis= try_8x8basis_c; c->add_8x8basis= add_8x8basis_c; -#ifdef CONFIG_SNOW_ENCODER +#ifdef CONFIG_SNOW_DECODER c->vertical_compose97i = ff_snow_vertical_compose97i; c->horizontal_compose97i = ff_snow_horizontal_compose97i; c->inner_add_yblock = ff_snow_inner_add_yblock; |