[FFmpeg-devel] [PATCH 1/2] avcodec/x86/hpeldsp_rnd_template: silence -Wunused-function on --disable-mmx
Ganesh Ajjanagadde
gajjanagadde at gmail.com
Sat Sep 19 23:32:35 CEST 2015
On Sat, Sep 19, 2015 at 11:38 AM, Ganesh Ajjanagadde
<gajjanagadde at gmail.com> wrote:
> This silences some of the -Wunused-function warnings when compiled with --disable-mmx, e.g
> http://fate.ffmpeg.org/log.cgi?time=20150919094617&log=compile&slot=x86_64-archlinux-gcc-disable-mmx.
> Header guards are too brittle and ugly for this case.
>
> Signed-off-by: Ganesh Ajjanagadde <gajjanagadde at gmail.com>
> ---
> libavcodec/x86/hpeldsp_rnd_template.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/libavcodec/x86/hpeldsp_rnd_template.c b/libavcodec/x86/hpeldsp_rnd_template.c
> index 8cbc412..abe3bb1 100644
> --- a/libavcodec/x86/hpeldsp_rnd_template.c
> +++ b/libavcodec/x86/hpeldsp_rnd_template.c
> @@ -28,7 +28,7 @@
> #include <stdint.h>
>
> // put_pixels
> -static void DEF(put, pixels8_x2)(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h)
> +av_unused static void DEF(put, pixels8_x2)(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h)
> {
> MOVQ_BFE(mm6);
> __asm__ volatile(
> @@ -60,7 +60,7 @@ static void DEF(put, pixels8_x2)(uint8_t *block, const uint8_t *pixels, ptrdiff_
> :REG_a, "memory");
> }
>
> -static void DEF(put, pixels16_x2)(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h)
> +av_unused static void DEF(put, pixels16_x2)(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h)
> {
> MOVQ_BFE(mm6);
> __asm__ volatile(
> @@ -135,7 +135,7 @@ static void DEF(put, pixels8_y2)(uint8_t *block, const uint8_t *pixels, ptrdiff_
> :REG_a, "memory");
> }
>
> -static void DEF(avg, pixels16_x2)(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h)
> +av_unused static void DEF(avg, pixels16_x2)(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h)
> {
> MOVQ_BFE(mm6);
> __asm__ volatile(
> --
> 2.5.2
>
apologies; [PATCH 1/2] -> [PATCH 1/3].
More information about the ffmpeg-devel
mailing list