summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo_xvmc.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-02-15 19:10:16 +0000
committerDiego Biurrun <diego@biurrun.de>2009-02-15 19:10:16 +0000
commitd758a5cb50ad593eec220b65fc3261b315455ed3 (patch)
tree348338634b313d4104f65f918ecde2b7e5c0e5c9 /libavcodec/mpegvideo_xvmc.c
parent1909fadea9eb6fb04d4cadf1ac0e15e942f7c6ff (diff)
spelling/grammar/wording fixes for Doxygen comments
Originally committed as revision 17344 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo_xvmc.c')
-rw-r--r--libavcodec/mpegvideo_xvmc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/mpegvideo_xvmc.c b/libavcodec/mpegvideo_xvmc.c
index e65431114d..b7fedb3bb6 100644
--- a/libavcodec/mpegvideo_xvmc.c
+++ b/libavcodec/mpegvideo_xvmc.c
@@ -34,8 +34,8 @@
/**
* Initializes the block field of the MpegEncContext pointer passed as
* parameter after making sure that the data is not corrupted.
- * In order to implement something like direct rendering instead of decodeing
- * coefficients in s->blocks and then copy them, do that directly
+ * In order to implement something like direct rendering instead of decoding
+ * coefficients in s->blocks and then copying them, copy them directly
* into the data_blocks array provided by xvmc.
*/
void ff_xvmc_init_block(MpegEncContext *s)
@@ -127,8 +127,8 @@ return -1;
/**
* Complete frame/field rendering by passing any remaining blocks.
- * Normally ff_draw_horiz_band() is called on each slice, however
- * there may be some remaining blocks, for example put by error_resilience.
+ * Normally ff_draw_horiz_band() is called for each slice, however,
+ * some leftover blocks, for example from error_resilience(), may remain.
* It should be safe to call the function a few times for the same field.
*/
void ff_xvmc_field_end(MpegEncContext *s)
@@ -142,7 +142,7 @@ void ff_xvmc_field_end(MpegEncContext *s)
/**
* Synthesize the data needed by XvMC to render one macroblock of data.
- * Fill all relevent fields, if necessery do IDCT.
+ * Fill all relevant fields, if necessery do IDCT.
*/
void ff_xvmc_decode_mb(MpegEncContext *s)
{