summaryrefslogtreecommitdiff
path: root/libavcodec/imgresample.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-12-21 11:50:18 +0000
committerDiego Biurrun <diego@biurrun.de>2007-12-21 11:50:18 +0000
commit8bfb108b3e3a44d6051e30d4c6cef64ff3567f5d (patch)
tree3364001a83f6466ae3cf7dde4aaa74a382cea1bc /libavcodec/imgresample.c
parent56b69633dd52bd2a2dd1a58207d505af41d2cd2f (diff)
comment typo fixes
Originally committed as revision 11294 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/imgresample.c')
-rw-r--r--libavcodec/imgresample.c2
1 files changed, 1 insertions, 1 deletions
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);