diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-10-30 20:41:40 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-10-30 20:41:40 +0000 |
commit | 6b72ac6323ec656fd0df6460ef844c83b5e76433 (patch) | |
tree | 5304a66d43316618b6147f50b700b10a6df3f887 /libavcodec/mpegvideo.h | |
parent | 6234d753a9ba67291d41bd1f537d57032c9813b6 (diff) | |
download | ffmpeg-6b72ac6323ec656fd0df6460ef844c83b5e76433.tar.gz |
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.h | 5 |
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 */ |