summaryrefslogtreecommitdiff
path: root/libpostproc/postprocess_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'libpostproc/postprocess_internal.h')
-rw-r--r--libpostproc/postprocess_internal.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/libpostproc/postprocess_internal.h b/libpostproc/postprocess_internal.h
index 1ebd974286..c1a306dd32 100644
--- a/libpostproc/postprocess_internal.h
+++ b/libpostproc/postprocess_internal.h
@@ -143,8 +143,11 @@ typedef struct PPContext{
DECLARE_ALIGNED(8, uint64_t, pQPb);
DECLARE_ALIGNED(8, uint64_t, pQPb2);
- DECLARE_ALIGNED(8, uint64_t, mmxDcOffset)[64];
- DECLARE_ALIGNED(8, uint64_t, mmxDcThreshold)[64];
+ DECLARE_ALIGNED(32, uint64_t, pQPb_block)[4];
+ DECLARE_ALIGNED(32, uint64_t, pQPb2_block)[4];
+
+ DECLARE_ALIGNED(32, uint64_t, mmxDcOffset)[64];
+ DECLARE_ALIGNED(32, uint64_t, mmxDcThreshold)[64];
QP_STORE_T *stdQPTable; ///< used to fix MPEG2 style qscale
QP_STORE_T *nonBQPTable;
@@ -153,6 +156,9 @@ typedef struct PPContext{
int QP;
int nonBQP;
+ DECLARE_ALIGNED(32, int, QP_block)[4];
+ DECLARE_ALIGNED(32, int, nonBQP_block)[4];
+
int frameNum;
int cpuCaps;