Browse Source

avcodec/x86/mpegaudiodsp: correct asm guards

Fixes -Wunused-function warnings when compiling with --disable-yasm on x86.

Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n2.8
Ganesh Ajjanagadde Michael Niedermayer 10 years ago
parent
commit
6638e4a950
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavcodec/x86/mpegaudiodsp.c

+ 2
- 0
libavcodec/x86/mpegaudiodsp.c View File

@@ -30,6 +30,7 @@
static void imdct36_blocks_ ## CPU(float *out, float *buf, float *in, int count, int switch_point, int block_type);\
void ff_imdct36_float_ ## CPU(float *out, float *buf, float *in, float *win);

#if HAVE_YASM
#if ARCH_X86_32
DECL(sse)
#endif
@@ -37,6 +38,7 @@ DECL(sse2)
DECL(sse3)
DECL(ssse3)
DECL(avx)
#endif /* HAVE_YASM */

void ff_four_imdct36_float_sse(float *out, float *buf, float *in, float *win,
float *tmpbuf);


Loading…
Cancel
Save