Ignore:
Timestamp:
May 5, 2011, 5:36:53 AM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/src/3rdparty/libjpeg/jutils.c

    r2 r846  
    33 *
    44 * Copyright (C) 1991-1996, Thomas G. Lane.
     5 * Modified 2009 by Guido Vollbeding.
    56 * This file is part of the Independent JPEG Group's software.
    67 * For conditions of distribution and use, see the accompanying README file.
     
    6465};
    6566
     67const int jpeg_natural_order7[7*7+16] = {
     68  0,  1,  8, 16,  9,  2,  3, 10,
     69 17, 24, 32, 25, 18, 11,  4,  5,
     70 12, 19, 26, 33, 40, 48, 41, 34,
     71 27, 20, 13,  6, 14, 21, 28, 35,
     72 42, 49, 50, 43, 36, 29, 22, 30,
     73 37, 44, 51, 52, 45, 38, 46, 53,
     74 54,
     75 63, 63, 63, 63, 63, 63, 63, 63, /* extra entries for safety in decoder */
     76 63, 63, 63, 63, 63, 63, 63, 63
     77};
     78
     79const int jpeg_natural_order6[6*6+16] = {
     80  0,  1,  8, 16,  9,  2,  3, 10,
     81 17, 24, 32, 25, 18, 11,  4,  5,
     82 12, 19, 26, 33, 40, 41, 34, 27,
     83 20, 13, 21, 28, 35, 42, 43, 36,
     84 29, 37, 44, 45,
     85 63, 63, 63, 63, 63, 63, 63, 63, /* extra entries for safety in decoder */
     86 63, 63, 63, 63, 63, 63, 63, 63
     87};
     88
     89const int jpeg_natural_order5[5*5+16] = {
     90  0,  1,  8, 16,  9,  2,  3, 10,
     91 17, 24, 32, 25, 18, 11,  4, 12,
     92 19, 26, 33, 34, 27, 20, 28, 35,
     93 36,
     94 63, 63, 63, 63, 63, 63, 63, 63, /* extra entries for safety in decoder */
     95 63, 63, 63, 63, 63, 63, 63, 63
     96};
     97
     98const int jpeg_natural_order4[4*4+16] = {
     99  0,  1,  8, 16,  9,  2,  3, 10,
     100 17, 24, 25, 18, 11, 19, 26, 27,
     101 63, 63, 63, 63, 63, 63, 63, 63, /* extra entries for safety in decoder */
     102 63, 63, 63, 63, 63, 63, 63, 63
     103};
     104
     105const int jpeg_natural_order3[3*3+16] = {
     106  0,  1,  8, 16,  9,  2, 10, 17,
     107 18,
     108 63, 63, 63, 63, 63, 63, 63, 63, /* extra entries for safety in decoder */
     109 63, 63, 63, 63, 63, 63, 63, 63
     110};
     111
     112const int jpeg_natural_order2[2*2+16] = {
     113  0,  1,  8,  9,
     114 63, 63, 63, 63, 63, 63, 63, 63, /* extra entries for safety in decoder */
     115 63, 63, 63, 63, 63, 63, 63, 63
     116};
     117
    66118
    67119/*
Note: See TracChangeset for help on using the changeset viewer.