# HG changeset patch # User diego # Date 1198237818 0 # Node ID bc22d052c6e5e5dd88235e015b4710ef25f90e6a # Parent de71ee8112f4b47ac09e3a0bf86386bc1945eec4 comment typo fixes diff -r de71ee8112f4 -r bc22d052c6e5 avcodec.h --- 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 { /** diff -r de71ee8112f4 -r bc22d052c6e5 imgresample.c --- 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);