diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-09-05 19:29:41 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-09-05 20:21:47 +0200 |
commit | 0a7239ae25e0741106b00def14ad8d8d4f211490 (patch) | |
tree | a9d3ec1dd83dd3cb890d12601ebc75a2435e069c /libavcodec/rv40dsp.c | |
parent | 7bd0079e9e024faafebcb94be369cf0d1ed7ddee (diff) | |
parent | 2143948381c8118bdc2f50bd4079520b9885bd54 (diff) | |
download | ffmpeg-0a7239ae25e0741106b00def14ad8d8d4f211490.tar.gz |
Merge commit '2143948381c8118bdc2f50bd4079520b9885bd54'
* commit '2143948381c8118bdc2f50bd4079520b9885bd54':
Drop unnecessary av_unused attributes.
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/rv40dsp.c')
-rw-r--r-- | libavcodec/rv40dsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv40dsp.c b/libavcodec/rv40dsp.c index 6d0884734f..19b0e93696 100644 --- a/libavcodec/rv40dsp.c +++ b/libavcodec/rv40dsp.c @@ -35,7 +35,7 @@ #include "libavutil/avassert.h" #define RV40_LOWPASS(OPNAME, OP) \ -static av_unused void OPNAME ## rv40_qpel8_h_lowpass(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride,\ +static void OPNAME ## rv40_qpel8_h_lowpass(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride,\ const int h, const int C1, const int C2, const int SHIFT){\ const uint8_t *cm = ff_crop_tab + MAX_NEG_CROP;\ int i;\ |