1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-18 23:35:06 +02:00

cosmetics: comment wording/grammar

Originally committed as revision 17286 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2009-02-14 21:52:44 +00:00
parent 6e4b41f880
commit 930efaf410

View File

@ -291,8 +291,9 @@ void ff_xvmc_decode_mb(MpegEncContext *s)
assert(render->filled_mv_blocks_num <= render->total_number_of_mv_blocks); assert(render->filled_mv_blocks_num <= render->total_number_of_mv_blocks);
assert(render->next_free_data_block_num <= render->total_number_of_data_blocks); assert(render->next_free_data_block_num <= render->total_number_of_data_blocks);
/*The above conditions should not be able to fail as long as this function is used /* The above conditions should not be able to fail as long as this function
and following 'if ()' automatically call callback to free blocks. */ * is used and the following 'if ()' automatically calls a callback to free
* blocks. */
if (render->filled_mv_blocks_num >= render->total_number_of_mv_blocks) if (render->filled_mv_blocks_num >= render->total_number_of_mv_blocks)