diff options
author | Ewald Snel <esnel@users.sourceforge.net> | 2002-07-15 22:07:18 +0000 |
---|---|---|
committer | Ewald Snel <esnel@users.sourceforge.net> | 2002-07-15 22:07:18 +0000 |
commit | 0adf1efac51504ec477d131c48989900c270d3f9 (patch) | |
tree | 1d3955bf3dfadd42611a726b538b38723abd531e | |
parent | 76e9bd86be57306fbf3bf607d68f9f38c04b4691 (diff) | |
download | xine-lib-0adf1efac51504ec477d131c48989900c270d3f9.tar.gz xine-lib-0adf1efac51504ec477d131c48989900c270d3f9.tar.bz2 |
oops! :)
CVS patchset: 2283
CVS date: 2002/07/15 22:07:18
-rw-r--r-- | src/libxinevdec/svq1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libxinevdec/svq1.c b/src/libxinevdec/svq1.c index 6441ed6e3..b78551f79 100644 --- a/src/libxinevdec/svq1.c +++ b/src/libxinevdec/svq1.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: svq1.c,v 1.4 2002/07/15 21:42:34 esnel Exp $ + * $Id: svq1.c,v 1.5 2002/07/15 22:07:18 esnel Exp $ */ #include <stdio.h> @@ -1352,7 +1352,7 @@ static void svq1_copy_frame (svq1_t *svq1, uint8_t *base[3], int pitches[3]) { /* interpolate and store two lines */ vscale_chroma_line (dst, pitches[i], cr1, cr2, (svq1->width / 2)); - dst += pitches[i]; + dst += 2*pitches[i]; /* swap buffers */ tmp = cr2; |