Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  jaricom.c

  Sprache: C
 

/*
 * jaricom.c
 *
 * This file was part of the Independent JPEG Group's software:
 * Developed 1997-2009 by Guido Vollbeding.
 * libjpeg-turbo Modifications:
 * Copyright (C) 2015, 2018, D. R. Commander.
 * For conditions of distribution and use, see the accompanying README.ijg
 * file.
 *
 * This file contains probability estimation tables for common use in
 * arithmetic entropy encoding and decoding routines.
 *
 * This data represents Table D.2 in
 * Recommendation ITU-T T.81 (1992) | ISO/IEC 10918-1:1994 and Table 24 in
 * Recommendation ITU-T T.82 (1993) | ISO/IEC 11544:1993.
 */


#define JPEG_INTERNALS
#include "jinclude.h"
#include "jpeglib.h"

/* The following #define specifies the packing of the four components
 * into the compact JLONG representation.
 * Note that this formula must match the actual arithmetic encoder
 * and decoder implementation.  The implementation has to be changed
 * if this formula is changed.
 * The current organization is leaned on Markus Kuhn's JBIG
 * implementation (jbig_tab.c).
 */


#define V(i, a, b, c, d) \
  (((JLONG)a << 16) | ((JLONG)c << 8) | ((JLONG)d << 7) | b)

const JLONG jpeg_aritab[113 + 1] = {
/*
 * Index, Qe_Value, Next_Index_LPS, Next_Index_MPS, Switch_MPS
 */

  V(   00x5a1d,   1,   11 ),
  V(   10x2586,  14,   20 ),
  V(   20x1114,  16,   30 ),
  V(   30x080b,  18,   40 ),
  V(   40x03d8,  20,   50 ),
  V(   50x01da,  23,   60 ),
  V(   60x00e5,  25,   70 ),
  V(   70x006f,  28,   80 ),
  V(   80x0036,  30,   90 ),
  V(   90x001a,  33,  100 ),
  V(  100x000d,  35,  110 ),
  V(  110x0006,   9,  120 ),
  V(  120x0003,  10,  130 ),
  V(  130x0001,  12,  130 ),
  V(  140x5a7f,  15,  151 ),
  V(  150x3f25,  36,  160 ),
  V(  160x2cf2,  38,  170 ),
  V(  170x207c,  39,  180 ),
  V(  180x17b9,  40,  190 ),
  V(  190x1182,  42,  200 ),
  V(  200x0cef,  43,  210 ),
  V(  210x09a1,  45,  220 ),
  V(  220x072f,  46,  230 ),
  V(  230x055c,  48,  240 ),
  V(  240x0406,  49,  250 ),
  V(  250x0303,  51,  260 ),
  V(  260x0240,  52,  270 ),
  V(  270x01b1,  54,  280 ),
  V(  280x0144,  56,  290 ),
  V(  290x00f5,  57,  300 ),
  V(  300x00b7,  59,  310 ),
  V(  310x008a,  60,  320 ),
  V(  320x0068,  62,  330 ),
  V(  330x004e,  63,  340 ),
  V(  340x003b,  32,  350 ),
  V(  350x002c,  33,   90 ),
  V(  360x5ae1,  37,  371 ),
  V(  370x484c,  64,  380 ),
  V(  380x3a0d,  65,  390 ),
  V(  390x2ef1,  67,  400 ),
  V(  400x261f,  68,  410 ),
  V(  410x1f33,  69,  420 ),
  V(  420x19a8,  70,  430 ),
  V(  430x1518,  72,  440 ),
  V(  440x1177,  73,  450 ),
  V(  450x0e74,  74,  460 ),
  V(  460x0bfb,  75,  470 ),
  V(  470x09f8,  77,  480 ),
  V(  480x0861,  78,  490 ),
  V(  490x0706,  79,  500 ),
  V(  500x05cd,  48,  510 ),
  V(  510x04de,  50,  520 ),
  V(  520x040f,  50,  530 ),
  V(  530x0363,  51,  540 ),
  V(  540x02d4,  52,  550 ),
  V(  550x025c,  53,  560 ),
  V(  560x01f8,  54,  570 ),
  V(  570x01a4,  55,  580 ),
  V(  580x0160,  56,  590 ),
  V(  590x0125,  57,  600 ),
  V(  600x00f6,  58,  610 ),
  V(  610x00cb,  59,  620 ),
  V(  620x00ab,  61,  630 ),
  V(  630x008f,  61,  320 ),
  V(  640x5b12,  65,  651 ),
  V(  650x4d04,  80,  660 ),
  V(  660x412c,  81,  670 ),
  V(  670x37d8,  82,  680 ),
  V(  680x2fe8,  83,  690 ),
  V(  690x293c,  84,  700 ),
  V(  700x2379,  86,  710 ),
  V(  710x1edf,  87,  720 ),
  V(  720x1aa9,  87,  730 ),
  V(  730x174e,  72,  740 ),
  V(  740x1424,  72,  750 ),
  V(  750x119c,  74,  760 ),
  V(  760x0f6b,  74,  770 ),
  V(  770x0d51,  75,  780 ),
  V(  780x0bb6,  77,  790 ),
  V(  790x0a40,  77,  480 ),
  V(  800x5832,  80,  811 ),
  V(  810x4d1c,  88,  820 ),
  V(  820x438e,  89,  830 ),
  V(  830x3bdd,  90,  840 ),
  V(  840x34ee,  91,  850 ),
  V(  850x2eae,  92,  860 ),
  V(  860x299a,  93,  870 ),
  V(  870x2516,  86,  710 ),
  V(  880x5570,  88,  891 ),
  V(  890x4ca9,  95,  900 ),
  V(  900x44d9,  96,  910 ),
  V(  910x3e22,  97,  920 ),
  V(  920x3824,  99,  930 ),
  V(  930x32b4,  99,  940 ),
  V(  940x2e17,  93,  860 ),
  V(  950x56a8,  95,  961 ),
  V(  960x4f46, 101,  970 ),
  V(  970x47e5, 102,  980 ),
  V(  980x41cf, 103,  990 ),
  V(  990x3c3d, 1041000 ),
  V( 1000x375e,  99,  930 ),
  V( 1010x5231, 1051020 ),
  V( 1020x4c0f, 1061030 ),
  V( 1030x4639, 1071040 ),
  V( 1040x415e, 103,  990 ),
  V( 1050x5627, 1051061 ),
  V( 1060x50e7, 1081070 ),
  V( 1070x4b85, 1091030 ),
  V( 1080x5597, 1101090 ),
  V( 1090x504f, 1111070 ),
  V( 1100x5a10, 1101111 ),
  V( 1110x5522, 1121090 ),
  V( 1120x59eb, 1121111 ),
/*
 * This last entry is used for fixed probability estimate of 0.5
 * as recommended in Section 10.3 Table 5 of ITU-T Rec. T.851.
 */

  V( 1130x5a1d, 1131130 )
};

Messung V0.5 in Prozent
C=90 H=89 G=89

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet am  2026-06-05) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik