diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2007-06-25 07:29:45 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2007-06-25 07:29:45 +0000 |
commit | 606975ab01b61f41d8c598e9fc881d246e844bda (patch) | |
tree | 52854f4b67868d5581a67128e138230c00381f93 /libavcodec/roqvideo.c | |
parent | 05ce0f11e4019f9a0d3fe528b0890f57664b442c (diff) | |
download | ffmpeg-606975ab01b61f41d8c598e9fc881d246e844bda.tar.gz |
Fix typo
patch by Vitor: {vitor1001 gmail com}
Originally committed as revision 9419 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/roqvideo.c')
-rw-r--r-- | libavcodec/roqvideo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/roqvideo.c b/libavcodec/roqvideo.c index f6b0184360..e478d4c10b 100644 --- a/libavcodec/roqvideo.c +++ b/libavcodec/roqvideo.c @@ -77,7 +77,7 @@ void ff_apply_vector_4x4(RoqContext *ri, int x, int y, roq_cell *cell) bptr[ 0] = bptr[ 1] = bptr[stride ] = bptr[stride +1] = cell->y[0]; bptr[ 2] = bptr[ 3] = bptr[stride +2] = bptr[stride +3] = cell->y[1]; bptr[stride*2 ] = bptr[stride*2+1] = bptr[stride*3 ] = bptr[stride*3+1] = cell->y[2]; - bptr[stride*2+2] = bptr[stride*2+3] = bptr[stride*3+2] = bptr[stride*3+3] = cell->y[2]; + bptr[stride*2+2] = bptr[stride*2+3] = bptr[stride*3+2] = bptr[stride*3+3] = cell->y[3]; bptr = ri->current_frame->data[1] + boffs; bptr[ 0] = bptr[ 1] = bptr[stride ] = bptr[stride +1] = |