comparison mpegvideo.h @ 341:bf26081c373c libavcodec

avcodec_flush_buffers()
author michaelni
date Wed, 24 Apr 2002 01:24:06 +0000
parents c56b45669214
children 9f6071a87e17
comparison
equal deleted inserted replaced
340:f24c77638413 341:bf26081c373c
127 UINT8 *next_picture[3]; /* previous picture (for bidir pred) */ 127 UINT8 *next_picture[3]; /* previous picture (for bidir pred) */
128 UINT8 *next_picture_base[3]; /* real start of the picture */ 128 UINT8 *next_picture_base[3]; /* real start of the picture */
129 UINT8 *aux_picture[3]; /* aux picture (for B frames only) */ 129 UINT8 *aux_picture[3]; /* aux picture (for B frames only) */
130 UINT8 *aux_picture_base[3]; /* real start of the picture */ 130 UINT8 *aux_picture_base[3]; /* real start of the picture */
131 UINT8 *current_picture[3]; /* buffer to store the decompressed current picture */ 131 UINT8 *current_picture[3]; /* buffer to store the decompressed current picture */
132 int num_available_buffers; /* is 0 at the start & after seeking, after the first I frame its 1 after next I/P 2 */
132 int last_dc[3]; /* last DC values for MPEG1 */ 133 int last_dc[3]; /* last DC values for MPEG1 */
133 INT16 *dc_val[3]; /* used for mpeg4 DC prediction, all 3 arrays must be continuous */ 134 INT16 *dc_val[3]; /* used for mpeg4 DC prediction, all 3 arrays must be continuous */
134 int y_dc_scale, c_dc_scale; 135 int y_dc_scale, c_dc_scale;
135 UINT8 *coded_block; /* used for coded block pattern prediction (msmpeg4v3, wmv1)*/ 136 UINT8 *coded_block; /* used for coded block pattern prediction (msmpeg4v3, wmv1)*/
136 INT16 (*ac_val[3])[16]; /* used for for mpeg4 AC prediction, all 3 arrays must be continuous */ 137 INT16 (*ac_val[3])[16]; /* used for for mpeg4 AC prediction, all 3 arrays must be continuous */