changeset 6055:bc22d052c6e5 libavcodec

comment typo fixes
author diego
date Fri, 21 Dec 2007 11:50:18 +0000
parents de71ee8112f4
children 558c1fd0ee72
files avcodec.h imgresample.c
diffstat 2 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/avcodec.h	Fri Dec 21 10:20:10 2007 +0000
+++ b/avcodec.h	Fri Dec 21 11:50:18 2007 +0000
@@ -747,10 +747,10 @@
  * Audio Video Frame.
  * New fields can be added to the end of FF_COMMON_FRAME with minor version
  * bumps.
- * Removal, reordering and changes to existing fields require a Major
+ * Removal, reordering and changes to existing fields require a major
  * version bump. No fields should be added into AVFrame before or after
  * FF_COMMON_FRAME!
- * sizeof(AVFrame) must not be used outside libav*
+ * sizeof(AVFrame) must not be used outside libav*.
  */
 typedef struct AVFrame {
     FF_COMMON_FRAME
@@ -761,9 +761,9 @@
 /**
  * main external API structure.
  * New fields can be added to the end with minor version bumps.
- * Removal, reordering and changes to existing fields require a Major
+ * Removal, reordering and changes to existing fields require a major
  * version bump.
- * sizeof(AVCodecContext) must not be used outside libav*
+ * sizeof(AVCodecContext) must not be used outside libav*.
  */
 typedef struct AVCodecContext {
     /**
--- a/imgresample.c	Fri Dec 21 10:20:10 2007 +0000
+++ b/imgresample.c	Fri Dec 21 11:50:18 2007 +0000
@@ -391,7 +391,7 @@
             h_resample(new_line, owidth,
                        src_line, iwidth, - FCENTER * POS_FRAC, s->h_incr,
                        &s->h_filters[0][0]);
-            /* handle ring buffer wraping */
+            /* handle ring buffer wrapping */
             if (ring_y >= LINE_BUF_HEIGHT) {
                 memcpy(s->line_buf + (ring_y - LINE_BUF_HEIGHT) * owidth,
                        new_line, owidth);