diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-12-30 11:33:59 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-12-30 11:33:59 +0000 |
commit | 4052cbf161adce4635175206cdadc77e657d7903 (patch) | |
tree | 8faa6bf636437623ad622db7e86b918be18786a4 /libavcodec/dsputil.c | |
parent | af818f7a6612e70320f83c7ef0ddc9bfd035d18b (diff) | |
download | ffmpeg-4052cbf161adce4635175206cdadc77e657d7903.tar.gz |
Get rid of pointless CONFIG_ANY_H263 preprocessor definition.
Originally committed as revision 20975 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index d3cd6430eb..9160ac308f 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -33,7 +33,6 @@ #include "faandct.h" #include "faanidct.h" #include "mathops.h" -#include "h263.h" #include "snow.h" #include "mpegvideo.h" #include "config.h" @@ -2876,7 +2875,7 @@ static void put_mspel8_mc22_c(uint8_t *dst, uint8_t *src, int stride){ } static void h263_v_loop_filter_c(uint8_t *src, int stride, int qscale){ - if(CONFIG_ANY_H263) { + if(CONFIG_H263_DECODER || CONFIG_H263_ENCODER) { int x; const int strength= ff_h263_loop_filter_strength[qscale]; @@ -2913,7 +2912,7 @@ static void h263_v_loop_filter_c(uint8_t *src, int stride, int qscale){ } static void h263_h_loop_filter_c(uint8_t *src, int stride, int qscale){ - if(CONFIG_ANY_H263) { + if(CONFIG_H263_DECODER || CONFIG_H263_ENCODER) { int y; const int strength= ff_h263_loop_filter_strength[qscale]; @@ -4807,7 +4806,7 @@ void dsputil_init(DSPContext* c, AVCodecContext *avctx) c->h264_h_loop_filter_chroma_intra= h264_h_loop_filter_chroma_intra_c; c->h264_loop_filter_strength= NULL; - if (CONFIG_ANY_H263) { + if (CONFIG_H263_DECODER || CONFIG_H263_ENCODER) { c->h263_h_loop_filter= h263_h_loop_filter_c; c->h263_v_loop_filter= h263_v_loop_filter_c; } |