putvlc.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:11k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /* vlc.h, variable length code tables (used by routines in putvlc.c)        */
  2. /* Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. */
  3. /*
  4.  * Disclaimer of Warranty
  5.  *
  6.  * These software programs are available to the user without any license fee or
  7.  * royalty on an "as is" basis.  The MPEG Software Simulation Group disclaims
  8.  * any and all warranties, whether express, implied, or statuary, including any
  9.  * implied warranties or merchantability or of fitness for a particular
  10.  * purpose.  In no event shall the copyright-holder be liable for any
  11.  * incidental, punitive, or consequential damages of any kind whatsoever
  12.  * arising from the use of these programs.
  13.  *
  14.  * This disclaimer of warranty extends to the user of these programs and user's
  15.  * customers, employees, agents, transferees, successors, and assigns.
  16.  *
  17.  * The MPEG Software Simulation Group does not represent or warrant that the
  18.  * programs furnished hereunder are free of infringement of any third-party
  19.  * patents.
  20.  *
  21.  * Commercial implementations of MPEG-1 and MPEG-2 video, including shareware,
  22.  * are subject to royalty fees to patent holders.  Many of these patents are
  23.  * general enough such that they are unavoidable regardless of implementation
  24.  * design.
  25.  *
  26.  */
  27. /* type definitions for variable length code table entries */
  28. typedef struct
  29. {
  30.   unsigned char code; /* right justified */
  31.   char len;
  32. } VLCtable;
  33. /* for codes longer than 8 bits (excluding leading zeroes) */
  34. typedef struct
  35. {
  36.   unsigned short code; /* right justified */
  37.   char len;
  38. } sVLCtable;
  39. /* data from ISO/IEC 13818-2 DIS, Annex B, variable length code tables */
  40. /* Table B-1, variable length codes for macroblock_address_increment
  41.  *
  42.  * indexed by [macroblock_address_increment-1]
  43.  * 'macroblock_escape' is treated elsewhere
  44.  */
  45. const static VLCtable addrinctab[33]=
  46. {
  47.   {0x01,1},  {0x03,3},  {0x02,3},  {0x03,4},
  48.   {0x02,4},  {0x03,5},  {0x02,5},  {0x07,7},
  49.   {0x06,7},  {0x0b,8},  {0x0a,8},  {0x09,8},
  50.   {0x08,8},  {0x07,8},  {0x06,8},  {0x17,10},
  51.   {0x16,10}, {0x15,10}, {0x14,10}, {0x13,10},
  52.   {0x12,10}, {0x23,11}, {0x22,11}, {0x21,11},
  53.   {0x20,11}, {0x1f,11}, {0x1e,11}, {0x1d,11},
  54.   {0x1c,11}, {0x1b,11}, {0x1a,11}, {0x19,11},
  55.   {0x18,11}
  56. };
  57. /* Table B-2, B-3, B-4 variable length codes for macroblock_type
  58.  *
  59.  * indexed by [macroblock_type]
  60.  */
  61. const static VLCtable mbtypetab[3][32]=
  62. {
  63.  /* I */
  64.  {
  65.   {0,0}, {1,1}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0},
  66.   {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0},
  67.   {0,0}, {1,2}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0},
  68.   {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0}
  69.  },
  70.  /* P */
  71.  {
  72.   {0,0}, {3,5}, {1,2}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0},
  73.   {1,3}, {0,0}, {1,1}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0},
  74.   {0,0}, {1,6}, {1,5}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0},
  75.   {0,0}, {0,0}, {2,5}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0}
  76.  },
  77.  /* B */
  78.  {
  79.   {0,0}, {3,5}, {0,0}, {0,0}, {2,3}, {0,0}, {3,3}, {0,0},
  80.   {2,4}, {0,0}, {3,4}, {0,0}, {2,2}, {0,0}, {3,2}, {0,0},
  81.   {0,0}, {1,6}, {0,0}, {0,0}, {0,0}, {0,0}, {2,6}, {0,0},
  82.   {0,0}, {0,0}, {3,6}, {0,0}, {0,0}, {0,0}, {2,5}, {0,0}
  83.  }
  84. };
  85. /* Table B-5 ... B-8 variable length codes for macroblock_type in
  86.  *  scalable sequences
  87.  *
  88.  * not implemented
  89.  */
  90. /* Table B-9, variable length codes for coded_block_pattern
  91.  *
  92.  * indexed by [coded_block_pattern]
  93.  */
  94. const static VLCtable cbptable[64]=
  95. {
  96.   {0x01,9}, {0x0b,5}, {0x09,5}, {0x0d,6}, 
  97.   {0x0d,4}, {0x17,7}, {0x13,7}, {0x1f,8}, 
  98.   {0x0c,4}, {0x16,7}, {0x12,7}, {0x1e,8}, 
  99.   {0x13,5}, {0x1b,8}, {0x17,8}, {0x13,8}, 
  100.   {0x0b,4}, {0x15,7}, {0x11,7}, {0x1d,8}, 
  101.   {0x11,5}, {0x19,8}, {0x15,8}, {0x11,8}, 
  102.   {0x0f,6}, {0x0f,8}, {0x0d,8}, {0x03,9}, 
  103.   {0x0f,5}, {0x0b,8}, {0x07,8}, {0x07,9}, 
  104.   {0x0a,4}, {0x14,7}, {0x10,7}, {0x1c,8}, 
  105.   {0x0e,6}, {0x0e,8}, {0x0c,8}, {0x02,9}, 
  106.   {0x10,5}, {0x18,8}, {0x14,8}, {0x10,8}, 
  107.   {0x0e,5}, {0x0a,8}, {0x06,8}, {0x06,9}, 
  108.   {0x12,5}, {0x1a,8}, {0x16,8}, {0x12,8}, 
  109.   {0x0d,5}, {0x09,8}, {0x05,8}, {0x05,9}, 
  110.   {0x0c,5}, {0x08,8}, {0x04,8}, {0x04,9},
  111.   {0x07,3}, {0x0a,5}, {0x08,5}, {0x0c,6}
  112. };
  113. /* Table B-14, DCT coefficients table zero
  114.  *
  115.  * indexed by [run][level-1]
  116.  * split into two tables (dct_code_tab1, dct_code_tab2) to reduce size
  117.  * 'first DCT coefficient' condition and 'End of Block' are treated elsewhere
  118.  * codes do not include s (sign bit)
  119.  */
  120. const static VLCtable dct_code_tab1[2][40]=
  121. {
  122.  /* run = 0, level = 1...40 */
  123.  {
  124.   {0x03, 2}, {0x04, 4}, {0x05, 5}, {0x06, 7},
  125.   {0x26, 8}, {0x21, 8}, {0x0a,10}, {0x1d,12},
  126.   {0x18,12}, {0x13,12}, {0x10,12}, {0x1a,13},
  127.   {0x19,13}, {0x18,13}, {0x17,13}, {0x1f,14},
  128.   {0x1e,14}, {0x1d,14}, {0x1c,14}, {0x1b,14},
  129.   {0x1a,14}, {0x19,14}, {0x18,14}, {0x17,14},
  130.   {0x16,14}, {0x15,14}, {0x14,14}, {0x13,14},
  131.   {0x12,14}, {0x11,14}, {0x10,14}, {0x18,15},
  132.   {0x17,15}, {0x16,15}, {0x15,15}, {0x14,15},
  133.   {0x13,15}, {0x12,15}, {0x11,15}, {0x10,15}
  134.  },
  135.  /* run = 1, level = 1...18 */
  136.  {
  137.   {0x03, 3}, {0x06, 6}, {0x25, 8}, {0x0c,10},
  138.   {0x1b,12}, {0x16,13}, {0x15,13}, {0x1f,15},
  139.   {0x1e,15}, {0x1d,15}, {0x1c,15}, {0x1b,15},
  140.   {0x1a,15}, {0x19,15}, {0x13,16}, {0x12,16},
  141.   {0x11,16}, {0x10,16}, {0x00, 0}, {0x00, 0},
  142.   {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0},
  143.   {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0},
  144.   {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0},
  145.   {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0},
  146.   {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}
  147.  }
  148. };
  149. const static VLCtable dct_code_tab2[30][5]=
  150. {
  151.   /* run = 2...31, level = 1...5 */
  152.   {{0x05, 4}, {0x04, 7}, {0x0b,10}, {0x14,12}, {0x14,13}},
  153.   {{0x07, 5}, {0x24, 8}, {0x1c,12}, {0x13,13}, {0x00, 0}},
  154.   {{0x06, 5}, {0x0f,10}, {0x12,12}, {0x00, 0}, {0x00, 0}},
  155.   {{0x07, 6}, {0x09,10}, {0x12,13}, {0x00, 0}, {0x00, 0}},
  156.   {{0x05, 6}, {0x1e,12}, {0x14,16}, {0x00, 0}, {0x00, 0}},
  157.   {{0x04, 6}, {0x15,12}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  158.   {{0x07, 7}, {0x11,12}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  159.   {{0x05, 7}, {0x11,13}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  160.   {{0x27, 8}, {0x10,13}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  161.   {{0x23, 8}, {0x1a,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  162.   {{0x22, 8}, {0x19,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  163.   {{0x20, 8}, {0x18,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  164.   {{0x0e,10}, {0x17,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  165.   {{0x0d,10}, {0x16,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  166.   {{0x08,10}, {0x15,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  167.   {{0x1f,12}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  168.   {{0x1a,12}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  169.   {{0x19,12}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  170.   {{0x17,12}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  171.   {{0x16,12}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  172.   {{0x1f,13}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  173.   {{0x1e,13}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  174.   {{0x1d,13}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  175.   {{0x1c,13}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  176.   {{0x1b,13}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  177.   {{0x1f,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  178.   {{0x1e,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  179.   {{0x1d,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  180.   {{0x1c,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  181.   {{0x1b,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}}
  182. };
  183. /* Table B-15, DCT coefficients table one
  184.  *
  185.  * indexed by [run][level-1]
  186.  * split into two tables (dct_code_tab1a, dct_code_tab2a) to reduce size
  187.  * 'End of Block' is treated elsewhere
  188.  * codes do not include s (sign bit)
  189.  */
  190. const static VLCtable dct_code_tab1a[2][40]=
  191. {
  192.  /* run = 0, level = 1...40 */
  193.  {
  194.   {0x02, 2}, {0x06, 3}, {0x07, 4}, {0x1c, 5},
  195.   {0x1d, 5}, {0x05, 6}, {0x04, 6}, {0x7b, 7},
  196.   {0x7c, 7}, {0x23, 8}, {0x22, 8}, {0xfa, 8},
  197.   {0xfb, 8}, {0xfe, 8}, {0xff, 8}, {0x1f,14},
  198.   {0x1e,14}, {0x1d,14}, {0x1c,14}, {0x1b,14},
  199.   {0x1a,14}, {0x19,14}, {0x18,14}, {0x17,14},
  200.   {0x16,14}, {0x15,14}, {0x14,14}, {0x13,14},
  201.   {0x12,14}, {0x11,14}, {0x10,14}, {0x18,15},
  202.   {0x17,15}, {0x16,15}, {0x15,15}, {0x14,15},
  203.   {0x13,15}, {0x12,15}, {0x11,15}, {0x10,15}
  204.  },
  205.  /* run = 1, level = 1...18 */
  206.  {
  207.   {0x02, 3}, {0x06, 5}, {0x79, 7}, {0x27, 8},
  208.   {0x20, 8}, {0x16,13}, {0x15,13}, {0x1f,15},
  209.   {0x1e,15}, {0x1d,15}, {0x1c,15}, {0x1b,15},
  210.   {0x1a,15}, {0x19,15}, {0x13,16}, {0x12,16},
  211.   {0x11,16}, {0x10,16}, {0x00, 0}, {0x00, 0},
  212.   {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0},
  213.   {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0},
  214.   {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0},
  215.   {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0},
  216.   {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}
  217.  }
  218. };
  219. const static VLCtable dct_code_tab2a[30][5]=
  220. {
  221.   /* run = 2...31, level = 1...5 */
  222.   {{0x05, 5}, {0x07, 7}, {0xfc, 8}, {0x0c,10}, {0x14,13}},
  223.   {{0x07, 5}, {0x26, 8}, {0x1c,12}, {0x13,13}, {0x00, 0}},
  224.   {{0x06, 6}, {0xfd, 8}, {0x12,12}, {0x00, 0}, {0x00, 0}},
  225.   {{0x07, 6}, {0x04, 9}, {0x12,13}, {0x00, 0}, {0x00, 0}},
  226.   {{0x06, 7}, {0x1e,12}, {0x14,16}, {0x00, 0}, {0x00, 0}},
  227.   {{0x04, 7}, {0x15,12}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  228.   {{0x05, 7}, {0x11,12}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  229.   {{0x78, 7}, {0x11,13}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  230.   {{0x7a, 7}, {0x10,13}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  231.   {{0x21, 8}, {0x1a,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  232.   {{0x25, 8}, {0x19,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  233.   {{0x24, 8}, {0x18,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  234.   {{0x05, 9}, {0x17,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  235.   {{0x07, 9}, {0x16,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  236.   {{0x0d,10}, {0x15,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  237.   {{0x1f,12}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  238.   {{0x1a,12}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  239.   {{0x19,12}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  240.   {{0x17,12}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  241.   {{0x16,12}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  242.   {{0x1f,13}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  243.   {{0x1e,13}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  244.   {{0x1d,13}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  245.   {{0x1c,13}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  246.   {{0x1b,13}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  247.   {{0x1f,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  248.   {{0x1e,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  249.   {{0x1d,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  250.   {{0x1c,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}},
  251.   {{0x1b,16}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}}
  252. };
  253. /* MPEG-4 matrices */
  254. static const uint8_t mpeg4_default_intra_matrix[64] = {
  255.   8, 17, 18, 19, 21, 23, 25, 27,
  256.  17, 18, 19, 21, 23, 25, 27, 28,
  257.  20, 21, 22, 23, 24, 26, 28, 30,
  258.  21, 22, 23, 24, 26, 28, 30, 32,
  259.  22, 23, 24, 26, 28, 30, 32, 35,
  260.  23, 24, 26, 28, 30, 32, 35, 38,
  261.  25, 26, 28, 30, 32, 35, 38, 41,
  262.  27, 28, 30, 32, 35, 38, 41, 45, 
  263. };
  264. static const uint8_t mpeg4_default_non_intra_matrix[64] = {
  265.  16, 17, 18, 19, 20, 21, 22, 23,
  266.  17, 18, 19, 20, 21, 22, 23, 24,
  267.  18, 19, 20, 21, 22, 23, 24, 25,
  268.  19, 20, 21, 22, 23, 24, 26, 27,
  269.  20, 21, 22, 23, 25, 26, 27, 28,
  270.  21, 22, 23, 24, 26, 27, 28, 30,
  271.  22, 23, 24, 26, 27, 28, 30, 31,
  272.  23, 24, 25, 27, 28, 30, 31, 33,
  273. };