diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-04-26 13:52:12 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-04-26 20:18:27 +0200 |
commit | e6ff064845d02c43526c8a56dab121c219f16659 (patch) | |
tree | 2b2e1f7c601568d61cfdec616e0c7df0b5ea0f3b /libavcodec/sh4 | |
parent | 9d35fa520e3b27f7dd9fe12c433eb596f1271515 (diff) | |
download | ffmpeg-e6ff064845d02c43526c8a56dab121c219f16659.tar.gz |
Eliminate pointless '#if 1' statements without matching '#else'.
Diffstat (limited to 'libavcodec/sh4')
-rw-r--r-- | libavcodec/sh4/qpel.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/sh4/qpel.c b/libavcodec/sh4/qpel.c index ff88b76faf..3242872e47 100644 --- a/libavcodec/sh4/qpel.c +++ b/libavcodec/sh4/qpel.c @@ -897,7 +897,6 @@ QPEL_MC(0, avg_ , _ , op_avg) #undef op_put #undef op_put_no_rnd -#if 1 #define H264_LOWPASS(OPNAME, OP, OP2) \ static inline void OPNAME ## h264_qpel_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride,int w,int h){\ uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;\ @@ -1298,7 +1297,6 @@ H264_MC(avg_, 16) #undef op_put #undef op2_avg #undef op2_put -#endif static void wmv2_mspel8_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int h){ uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; |