diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-09-02 23:25:07 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-09-05 13:55:04 +0200 |
commit | 2143948381c8118bdc2f50bd4079520b9885bd54 (patch) | |
tree | 94091b8539434e98cb8b96b07221b15bb535b5bb /libavcodec/h264qpel_template.c | |
parent | 213e606752d16f51337e94431962fb5d7749c07e (diff) | |
download | ffmpeg-2143948381c8118bdc2f50bd4079520b9885bd54.tar.gz |
Drop unnecessary av_unused attributes.
Diffstat (limited to 'libavcodec/h264qpel_template.c')
-rw-r--r-- | libavcodec/h264qpel_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264qpel_template.c b/libavcodec/h264qpel_template.c index 7dd901ce24..e846ac9e91 100644 --- a/libavcodec/h264qpel_template.c +++ b/libavcodec/h264qpel_template.c @@ -378,7 +378,7 @@ static void FUNC(OPNAME ## h264_qpel16_hv_lowpass)(uint8_t *dst, int16_t *tmp, c }\ #define H264_MC(OPNAME, SIZE) \ -static av_unused void FUNCC(OPNAME ## h264_qpel ## SIZE ## _mc00)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\ +static void FUNCC(OPNAME ## h264_qpel ## SIZE ## _mc00)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\ {\ FUNCC(OPNAME ## pixels ## SIZE)(dst, src, stride, SIZE);\ }\ |