On Tue, Sep 29, 2015 at 6:28 PM, Ganesh Ajjanagadde
<gajjanaga...@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 <gajjanaga...@gmail.com>
> ---
>  libavcodec/x86/hpeldsp_rnd_template.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/libavcodec/x86/hpeldsp_rnd_template.c 
> b/libavcodec/x86/hpeldsp_rnd_template.c
> index abe3bb1..e20d065 100644
> --- a/libavcodec/x86/hpeldsp_rnd_template.c
> +++ b/libavcodec/x86/hpeldsp_rnd_template.c
> @@ -106,7 +106,7 @@ av_unused static void DEF(put, pixels16_x2)(uint8_t 
> *block, const uint8_t *pixel
>          :REG_a, "memory");
>  }
>
> -static void DEF(put, pixels8_y2)(uint8_t *block, const uint8_t *pixels, 
> ptrdiff_t line_size, int h)
> +av_unused static void DEF(put, pixels8_y2)(uint8_t *block, const uint8_t 
> *pixels, ptrdiff_t line_size, int h)
>  {
>      MOVQ_BFE(mm6);
>      __asm__ volatile(
> @@ -162,7 +162,7 @@ av_unused static void DEF(avg, pixels16_x2)(uint8_t 
> *block, const uint8_t *pixel
>              :"memory");
>  }
>
> -static void DEF(avg, pixels8_y2)(uint8_t *block, const uint8_t *pixels, 
> ptrdiff_t line_size, int h)
> +av_unused static void DEF(avg, pixels8_y2)(uint8_t *block, const uint8_t 
> *pixels, ptrdiff_t line_size, int h)
>  {
>      MOVQ_BFE(mm6);
>      __asm__ volatile(
> --
> 2.5.3
>

ping
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Reply via email to