Browse Source

avcodec/motion_est: Attempt to fix "short data segment overflowed" on IA64

This decreases the MV related encoding table sizes
This should have little effect on real world video encoding performance

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.0
Michael Niedermayer 10 years ago
parent
commit
d7c75a5db0
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      libavcodec/motion_est.h

+ 4
- 0
libavcodec/motion_est.h View File

@@ -29,7 +29,11 @@

struct MpegEncContext;

#if ARCH_IA64 // Limit static arrays to avoid gcc failing "short data segment overflowed"
#define MAX_MV 1024
#else
#define MAX_MV 4096
#endif
#define MAX_DMV (2*MAX_MV)
#define ME_MAP_SIZE 64



Loading…
Cancel
Save