comparison xvmc.h @ 9165:b3a081ee40a9 libavcodec

Improve description of next_free_data_block_num struct member.
author diego
date Sat, 14 Mar 2009 17:20:28 +0000
parents 52c002a02f65
children fdafbcef52f5
comparison
equal deleted inserted replaced
9164:c48f55549c06 9165:b3a081ee40a9
139 */ 139 */
140 int filled_mv_blocks_num; 140 int filled_mv_blocks_num;
141 141
142 /** Number of the the next free data block; one data block consists of 142 /** Number of the the next free data block; one data block consists of
143 64 short values in the data_blocks array. 143 64 short values in the data_blocks array.
144 All blocks before this one are already claimed by filling their number 144 All blocks before this one have already been claimed by placing their
145 into the corresponding blocks description structure field, 145 position into the corresponding block description structure field,
146 that are hold in mv_blocks array. 146 that are part of the mv_blocks array.
147 - application - zeroes it on get_buffer(). 147 - application - zeroes it on get_buffer().
148 A successful ff_draw_horiz_band() may zero it together 148 A successful ff_draw_horiz_band() may zero it together
149 with start_mb_blocks_num. 149 with start_mb_blocks_num.
150 - libavcodec - each decoded macroblock increases it by the number 150 - libavcodec - each decoded macroblock increases it by the number
151 of coded blocks it contains. 151 of coded blocks it contains.