comparison mpegvideo.h @ 1705:954593137d37 libavcodec

picture number fixes
author michael
date Mon, 29 Dec 2003 22:25:08 +0000
parents f3287b5d8d9f
children 3ba5c493db6f
comparison
equal deleted inserted replaced
1704:8bccf5eda14b 1705:954593137d37
258 /** bit output */ 258 /** bit output */
259 PutBitContext pb; 259 PutBitContext pb;
260 260
261 /* sequence parameters */ 261 /* sequence parameters */
262 int context_initialized; 262 int context_initialized;
263 int input_picture_number; 263 int input_picture_number; ///< used to set pic->display_picture_number, shouldnt be used for/by anything else
264 int picture_number; 264 int coded_picture_number; ///< used to set pic->coded_picture_number, shouldnt be used for/by anything else
265 int picture_number; //FIXME remove, unclear definition
265 int picture_in_gop_number; ///< 0-> first pic in gop, ... 266 int picture_in_gop_number; ///< 0-> first pic in gop, ...
266 int b_frames_since_non_b; ///< used for encoding, relative to not yet reordered input 267 int b_frames_since_non_b; ///< used for encoding, relative to not yet reordered input
267 int mb_width, mb_height; ///< number of MBs horizontally & vertically 268 int mb_width, mb_height; ///< number of MBs horizontally & vertically
268 int mb_stride; ///< mb_width+1 used for some arrays to allow simple addressng of left & top MBs withoutt sig11 269 int mb_stride; ///< mb_width+1 used for some arrays to allow simple addressng of left & top MBs withoutt sig11
269 int b8_stride; ///< 2*mb_width+1 used for some 8x8 block arrays to allow simple addressng 270 int b8_stride; ///< 2*mb_width+1 used for some 8x8 block arrays to allow simple addressng