diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-12-21 11:50:18 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-12-21 11:50:18 +0000 |
commit | 8bfb108b3e3a44d6051e30d4c6cef64ff3567f5d (patch) | |
tree | 3364001a83f6466ae3cf7dde4aaa74a382cea1bc /libavcodec | |
parent | 56b69633dd52bd2a2dd1a58207d505af41d2cd2f (diff) | |
download | ffmpeg-8bfb108b3e3a44d6051e30d4c6cef64ff3567f5d.tar.gz |
comment typo fixes
Originally committed as revision 11294 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 8 | ||||
-rw-r--r-- | libavcodec/imgresample.c | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 6195fc52b8..ac325a6f4e 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -747,10 +747,10 @@ typedef struct AVPanScan{ * 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 @@ typedef struct AVFrame { /** * 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 { /** diff --git a/libavcodec/imgresample.c b/libavcodec/imgresample.c index b64ea19db3..c481e9df34 100644 --- a/libavcodec/imgresample.c +++ b/libavcodec/imgresample.c @@ -391,7 +391,7 @@ static void component_resample(ImgReSampleContext *s, 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); |