On Thu, May 10, 2012 at 01:29:34PM +0100, Mans Rullgard wrote:
> Signed-off-by: Mans Rullgard <[email protected]>
> ---
>  libavcodec/vqavideo.c |    8 +++-----
>  1 file changed, 3 insertions(+), 5 deletions(-)
> 
> diff --git a/libavcodec/vqavideo.c b/libavcodec/vqavideo.c
> index 9cca3e7..3c9fbed 100644
> --- a/libavcodec/vqavideo.c
> +++ b/libavcodec/vqavideo.c
> @@ -462,11 +462,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 */
> -- 

OK, looks much nicer
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to