summaryrefslogtreecommitdiffstats
path: root/postproc/postprocess_internal.h
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-12-29 00:57:23 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-12-29 00:57:23 +0000
commit9e0d37a9b97090926f311ac7ac512cedc1887379 (patch)
tree25383f05e4eef30affbd2990b925495299588ba9 /postproc/postprocess_internal.h
parentdf1abf6c692e1cc1d8545cf616f76d6cbc674908 (diff)
downloadmpv-9e0d37a9b97090926f311ac7ac512cedc1887379.tar.bz2
mpv-9e0d37a9b97090926f311ac7ac512cedc1887379.tar.xz
buffer alloc cleanup / 10l
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8631 b3059339-0415-0410-9bf9-f77b7e298cf2
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;