diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-12-29 00:57:23 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-12-29 00:57:23 +0000 |
commit | 88c0bc7e9c33a77db95186f1aa2b0f89d19b2f67 (patch) | |
tree | 70caeeca1a6010f419afe99dcb10917cbec90b27 /postproc/postprocess_internal.h | |
parent | d3d100875e627a4a6565af3c2d4e6e60db878241 (diff) | |
download | ffmpeg-88c0bc7e9c33a77db95186f1aa2b0f89d19b2f67.tar.gz |
buffer alloc cleanup / 10l
Originally committed as revision 8631 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/postprocess_internal.h')
-rw-r--r-- | postproc/postprocess_internal.h | 10 |
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; |