diff options
author | Mans Rullgard <mans@mansr.com> | 2012-04-23 12:51:28 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-05-10 22:55:42 +0100 |
commit | c776531aef9b546ca576d4c8e3ec14a513394618 (patch) | |
tree | 3987730b9e4617dec02a12efa035264a1bc15714 /libavcodec/vqavideo.c | |
parent | 4f1500689d662cfe08bff6d949f7fb49311024da (diff) | |
download | ffmpeg-c776531aef9b546ca576d4c8e3ec14a513394618.tar.gz |
vqavideo: change x/y loop counters to the usual pattern
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/vqavideo.c')
-rw-r--r-- | libavcodec/vqavideo.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libavcodec/vqavideo.c b/libavcodec/vqavideo.c index dc58b60004..1bad2266e8 100644 --- a/libavcodec/vqavideo.c +++ b/libavcodec/vqavideo.c @@ -468,11 +468,9 @@ static int vqa_decode_chunk(VqaContext *s) index_shift = 4; else index_shift = 3; - for (y = 0; y < s->frame.linesize[0] * s->height; - y += s->frame.linesize[0] * s->vector_height) { - - for (x = y; x < y + s->width; x += 4, lobytes++, hibytes++) { - pixel_ptr = x; + for (y = 0; y < s->height; y += s->vector_height) { + for (x = 0; x < s->width; x += 4, lobytes++, hibytes++) { + pixel_ptr = y * s->frame.linesize[0] + x; /* get the vector index, the method for which varies according to * VQA file version */ |