]> git.sesse.net Git - fjl/commitdiff
Fix height/width read.
authorsgunderson@bigfoot.com <>
Sun, 31 May 2009 09:28:49 +0000 (11:28 +0200)
committersgunderson@bigfoot.com <>
Sun, 31 May 2009 09:28:49 +0000 (11:28 +0200)
driver.c

index 20d64f2cd0c9c062e775fb0c66aad4dd6be4b797..0834df763d2124f9268c441b9e2f2074d97815c3 100644 (file)
--- a/driver.c
+++ b/driver.c
@@ -62,8 +62,8 @@ void read_sof(struct byte_source* source, struct jpeg_image* image)
        assert(len >= 8);
        image->precision = read_uint8(byte_source_input_func, source);
        assert(image->precision == 8);
        assert(len >= 8);
        image->precision = read_uint8(byte_source_input_func, source);
        assert(image->precision == 8);
-       image->width = read_uint16(byte_source_input_func, source);
        image->height = read_uint16(byte_source_input_func, source);
        image->height = read_uint16(byte_source_input_func, source);
+       image->width = read_uint16(byte_source_input_func, source);
        image->num_components = read_uint8(byte_source_input_func, source);
        len -= 8;
 
        image->num_components = read_uint8(byte_source_input_func, source);
        len -= 8;