summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-10-30 20:41:40 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-10-30 20:41:40 +0000
commit6b72ac6323ec656fd0df6460ef844c83b5e76433 (patch)
tree5304a66d43316618b6147f50b700b10a6df3f887 /libavcodec/mpegvideo.h
parent6234d753a9ba67291d41bd1f537d57032c9813b6 (diff)
exporting the internal qscale table, this allso fixes the ordering
Originally committed as revision 1116 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r--libavcodec/mpegvideo.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h
index d50d1ad0e6..272f75cfe0 100644
--- a/libavcodec/mpegvideo.h
+++ b/libavcodec/mpegvideo.h
@@ -187,7 +187,10 @@ typedef struct MpegEncContext {
UINT8 *mbintra_table; /* used to avoid setting {ac, dc, cbp}-pred stuff to zero on inter MB decoding */
UINT8 *cbp_table; /* used to store cbp, ac_pred for partitioned decoding */
UINT8 *pred_dir_table; /* used to store pred_dir for partitioned decoding */
- INT8 *qscale_table; /* used to store qscale for partitioned decoding (& postprocessing FIXME export) */
+ INT8 *qscale_table; /* used to store qscale */
+ INT8 *aux_qscale_table;
+ INT8 *next_qscale_table;
+ INT8 *last_qscale_table; //FIXME move these into some picture struct (MpegEncContext.aux.qscale_table[])
UINT8 *edge_emu_buffer;
int input_qscale; /* qscale prior to reordering of frames */