comparison mpegvideo.h @ 1556:5ebb4ae753d3 libavcodec

112 bytes smaller MpegEncContext
author michael
date Wed, 22 Oct 2003 15:36:46 +0000
parents 27073c5532dc
children 628bf341e099
comparison
equal deleted inserted replaced
1555:27073c5532dc 1556:5ebb4ae753d3
300 int h_edge_pos, v_edge_pos;///< horizontal / vertical position of the right/bottom edge (pixel replicateion) 300 int h_edge_pos, v_edge_pos;///< horizontal / vertical position of the right/bottom edge (pixel replicateion)
301 int mb_num; ///< number of MBs of a picture 301 int mb_num; ///< number of MBs of a picture
302 int linesize; ///< line size, in bytes, may be different from width 302 int linesize; ///< line size, in bytes, may be different from width
303 int uvlinesize; ///< line size, for chroma in bytes, may be different from width 303 int uvlinesize; ///< line size, for chroma in bytes, may be different from width
304 Picture *picture; ///< main picture buffer 304 Picture *picture; ///< main picture buffer
305 Picture *input_picture[MAX_PICTURE_COUNT]; ///< next pictures on display order for encoding 305 Picture **input_picture; ///< next pictures on display order for encoding
306 Picture *reordered_input_picture[MAX_PICTURE_COUNT]; ///< pointer to the next pictures in codedorder for encoding 306 Picture **reordered_input_picture; ///< pointer to the next pictures in codedorder for encoding
307 307
308 /** 308 /**
309 * copy of the previous picture structure. 309 * copy of the previous picture structure.
310 * note, linesize & data, might not match the previous picture (for field pictures) 310 * note, linesize & data, might not match the previous picture (for field pictures)
311 */ 311 */