comparison indeo5.c @ 11503:5536f1bacb48 libavcodec

document two variables in Indeo5 decoding context
author kostya
date Wed, 17 Mar 2010 07:49:36 +0000
parents 128f82b41fc1
children d44678e484a3
comparison
equal deleted inserted replaced
11502:eb86fea1146b 11503:5536f1bacb48
55 AVFrame frame; 55 AVFrame frame;
56 RVMapDesc rvmap_tabs[9]; ///< local corrected copy of the static rvmap tables 56 RVMapDesc rvmap_tabs[9]; ///< local corrected copy of the static rvmap tables
57 IVIPlaneDesc planes[3]; ///< color planes 57 IVIPlaneDesc planes[3]; ///< color planes
58 const uint8_t *frame_data; ///< input frame data pointer 58 const uint8_t *frame_data; ///< input frame data pointer
59 int buf_switch; ///< used to switch between three buffers 59 int buf_switch; ///< used to switch between three buffers
60 int dst_buf; 60 int dst_buf; ///< buffer index for the currently decoded frame
61 int ref_buf; 61 int ref_buf; ///< inter frame reference buffer index
62 uint32_t frame_size; ///< frame size in bytes 62 uint32_t frame_size; ///< frame size in bytes
63 int frame_type; 63 int frame_type;
64 int prev_frame_type; ///< frame type of the previous frame 64 int prev_frame_type; ///< frame type of the previous frame
65 int frame_num; 65 int frame_num;
66 uint32_t pic_hdr_size; ///< picture header size in bytes 66 uint32_t pic_hdr_size; ///< picture header size in bytes