summaryrefslogtreecommitdiff
path: root/src/libffmpeg/libavcodec/libpostproc/postprocess_internal.h
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2003-06-19 00:47:19 +0000
committerMike Melanson <mike@multimedia.cx>2003-06-19 00:47:19 +0000
commit6f3b07176ae833429586bf9d27c8477db9efa7a7 (patch)
treeacba2593ed69e5a2aaa96aea9215948459d8ea8f /src/libffmpeg/libavcodec/libpostproc/postprocess_internal.h
parentc52df867db2f177dcabbbbe2b93517c9bf4f8ae1 (diff)
downloadxine-lib-6f3b07176ae833429586bf9d27c8477db9efa7a7.tar.gz
xine-lib-6f3b07176ae833429586bf9d27c8477db9efa7a7.tar.bz2
maintenance ffmpeg sync: import and activate decoders for 4X and
RealAudio codecs; import VP3 decoder but leave de-activated; fixes for SVQ3 bugs; more conditional compilation for encoders CVS patchset: 5067 CVS date: 2003/06/19 00:47:19
Diffstat (limited to 'src/libffmpeg/libavcodec/libpostproc/postprocess_internal.h')
-rw-r--r--src/libffmpeg/libavcodec/libpostproc/postprocess_internal.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libffmpeg/libavcodec/libpostproc/postprocess_internal.h b/src/libffmpeg/libavcodec/libpostproc/postprocess_internal.h
index febea1818..13b3e3831 100644
--- a/src/libffmpeg/libavcodec/libpostproc/postprocess_internal.h
+++ b/src/libffmpeg/libavcodec/libpostproc/postprocess_internal.h
@@ -137,6 +137,7 @@ typedef struct PPContext{
uint64_t __attribute__((aligned(8))) mmxDcOffset[32];
uint64_t __attribute__((aligned(8))) mmxDcThreshold[32];
+ QP_STORE_T *stdQPTable; ///< used to fix MPEG2 style qscale
QP_STORE_T *nonBQPTable;
QP_STORE_T *forcedQPTable;
@@ -147,7 +148,8 @@ typedef struct PPContext{
int cpuCaps;
- int stride; ///<size of some buffers (needed to realloc them if needed)
+ int qpStride; ///<size of qp buffers (needed to realloc them if needed)
+ int stride; ///<size of some buffers (needed to realloc them if needed)
int hChromaSubSample;
int vChromaSubSample;
@@ -155,3 +157,4 @@ typedef struct PPContext{
PPMode ppMode;
} PPContext;
+