Browse Source

sws: Fix compilation with disabled MMX2

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.9
Michael Niedermayer 13 years ago
parent
commit
7437db84a9
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libswscale/x86/swscale_mmx.c

+ 2
- 0
libswscale/x86/swscale_mmx.c View File

@@ -176,6 +176,7 @@ void updateMMXDitherTables(SwsContext *c, int dstY, int lumBufIndex, int chrBufI
}
}

#if HAVE_MMX2
static void yuv2yuvX_sse3(const int16_t *filter, int filterSize,
const int16_t **src, uint8_t *dest, int dstW,
const uint8_t *dither, int offset)
@@ -234,6 +235,7 @@ static void yuv2yuvX_sse3(const int16_t *filter, int filterSize,
: "%"REG_d, "%"REG_S, "%"REG_c
);
}
#endif

#define SCALE_FUNC(filter_n, from_bpc, to_bpc, opt) \
extern void ff_hscale ## from_bpc ## to ## to_bpc ## _ ## filter_n ## _ ## opt( \


Loading…
Cancel
Save