summaryrefslogtreecommitdiffstats
path: root/postproc/postprocess_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'postproc/postprocess_internal.h')
-rw-r--r--postproc/postprocess_internal.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/postproc/postprocess_internal.h b/postproc/postprocess_internal.h
index 12609e46d6..e95e5e76de 100644
--- a/postproc/postprocess_internal.h
+++ b/postproc/postprocess_internal.h
@@ -100,9 +100,6 @@ typedef struct PPContext{
uint8_t *tempDst;
uint8_t *tempSrc;
- /* Temporary buffers for handling the last block */
- uint8_t *tempDstBlock;
- uint8_t *tempSrcBlock;
uint8_t *deintTemp;
uint64_t __attribute__((aligned(8))) pQPb;
@@ -110,15 +107,18 @@ typedef struct PPContext{
uint64_t __attribute__((aligned(8))) mmxDcOffset[32];
uint64_t __attribute__((aligned(8))) mmxDcThreshold[32];
-
+
QP_STORE_T *nonBQPTable;
-
+ QP_STORE_T *forcedQPTable;
+
int QP;
int nonBQP;
int frameNum;
int cpuCaps;
+
+ int stride; //size of some buffers (needed to realloc them if needed)
PPMode ppMode;
} PPContext;