diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-01-10 16:37:23 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-03-26 04:31:27 -0700 |
commit | 09d4389de10b03ea65a84eaf3d6c4b7a7538ad75 (patch) | |
tree | c6bfe91af8e603114b58589c38cb950d183b028b /libavcodec | |
parent | 92ba965103d3884609730ba9bf293772dc78a9ef (diff) | |
download | ffmpeg-09d4389de10b03ea65a84eaf3d6c4b7a7538ad75.tar.gz |
hpeldsp_template: Drop av_unused attribute from *_no_rnd_pixels16_8_c functions
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/hpeldsp_template.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/hpeldsp_template.c b/libavcodec/hpeldsp_template.c index 6869fe2297..246421ef03 100644 --- a/libavcodec/hpeldsp_template.c +++ b/libavcodec/hpeldsp_template.c @@ -309,9 +309,9 @@ CALL_2X_PIXELS(OPNAME ## _pixels16_y2_8_c, \ CALL_2X_PIXELS(OPNAME ## _pixels16_xy2_8_c, \ OPNAME ## _pixels8_xy2_8_c, \ 8) \ -av_unused CALL_2X_PIXELS(OPNAME ## _no_rnd_pixels16_8_c, \ - OPNAME ## _pixels8_8_c, \ - 8) \ +CALL_2X_PIXELS(OPNAME ## _no_rnd_pixels16_8_c, \ + OPNAME ## _pixels8_8_c, \ + 8) \ CALL_2X_PIXELS(OPNAME ## _no_rnd_pixels16_x2_8_c, \ OPNAME ## _no_rnd_pixels8_x2_8_c, \ 8) \ |