Fix accurate rounding mode on x86_64.

Fixes issue222.

Originally committed as revision 27545 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
Michael Niedermayer
2008-09-07 21:06:21 +00:00
parent 3943bd0901
commit 1625216eaa
3 changed files with 34 additions and 21 deletions

View File

@@ -29,6 +29,8 @@
#include "libavutil/avutil.h"
#define STR(s) AV_TOSTRING(s) //AV_STINGIFY is too long
#define MAX_FILTER_SIZE 256
#define VOFW 2048
@@ -40,6 +42,16 @@
#define ALT32_CORR 1
#endif
#ifdef ARCH_X86_64
# define APCK_PTR2 8
# define APCK_COEF 16
# define APCK_SIZE 24
#else
# define APCK_PTR2 4
# define APCK_COEF 8
# define APCK_SIZE 16
#endif
typedef int (*SwsFunc)(struct SwsContext *context, uint8_t* src[], int srcStride[], int srcSliceY,
int srcSliceH, uint8_t* dst[], int dstStride[]);