mirror of
https://github.com/webmproject/libwebp.git
synced 2024-12-27 22:28:22 +01:00
enc_mips32: fix unused symbol warning in debug
move kC1 / kC2 under __OPTIMIZE__
missed in:
8dec120
enc_mips32: disable ITransform(One) in debug builds
Change-Id: Ic9a12e6d73090c8c06b0e7a4bc56dd9c76b8e596
This commit is contained in:
parent
8dec120975
commit
6653b601ef
@ -20,14 +20,14 @@
|
||||
#include "../enc/vp8enci.h"
|
||||
#include "../enc/cost.h"
|
||||
|
||||
static const int kC1 = 20091 + (1 << 16);
|
||||
static const int kC2 = 35468;
|
||||
|
||||
// TODO(djordje): this fails in optimized builds:
|
||||
// error: can't find a register in class 'GR_REGS' while reloading 'asm'
|
||||
// error: 'asm' operand has impossible constraints
|
||||
#ifdef __OPTIMIZE__
|
||||
|
||||
static const int kC1 = 20091 + (1 << 16);
|
||||
static const int kC2 = 35468;
|
||||
|
||||
// macro for one vertical pass in ITransformOne
|
||||
// MUL macro inlined
|
||||
// temp0..temp15 holds tmp[0]..tmp[15]
|
||||
|
Loading…
Reference in New Issue
Block a user