Browse Source

ARM: dca: disable optimised decode_blockcodes() for old gcc

Old gcc versions have trouble compiling this function, and
no simple, targeted test is possible.

Signed-off-by: Mans Rullgard <mans@mansr.com>
tags/n0.10
Mans Rullgard 14 years ago
parent
commit
f7de52354f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/arm/dca.h

+ 1
- 1
libavcodec/arm/dca.h View File

@@ -25,7 +25,7 @@
#include "config.h"
#include "libavutil/intmath.h"

#if HAVE_ARMV6 && HAVE_INLINE_ASM
#if HAVE_ARMV6 && HAVE_INLINE_ASM && AV_GCC_VERSION_AT_LEAST(4,4)

#define decode_blockcodes decode_blockcodes
static inline int decode_blockcodes(int code1, int code2, int levels,


Loading…
Cancel
Save