From 6b72ac6323ec656fd0df6460ef844c83b5e76433 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 30 Oct 2002 20:41:40 +0000 Subject: exporting the internal qscale table, this allso fixes the ordering Originally committed as revision 1116 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpegvideo.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'libavcodec/mpegvideo.h') 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 */ -- cgit v1.2.3