Browse Source

Fix compilation with --disable-everything --enable-encoder=flac.

tags/n2.2-rc1
Carl Eugen Hoyos 12 years ago
parent
commit
4bcc6febcf
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/flacdsp.c

+ 1
- 1
libavcodec/flacdsp.c View File

@@ -128,6 +128,6 @@ av_cold void ff_flacdsp_init(FLACDSPContext *c, enum AVSampleFormat fmt,


if (ARCH_ARM) if (ARCH_ARM)
ff_flacdsp_init_arm(c, fmt, bps); ff_flacdsp_init_arm(c, fmt, bps);
if (ARCH_X86)
if (ARCH_X86 && CONFIG_FLAC_DECODER)
ff_flacdsp_init_x86(c, fmt, bps); ff_flacdsp_init_x86(c, fmt, bps);
} }

Loading…
Cancel
Save