4xm.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:23k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*
  2.  * 4XM codec
  3.  * Copyright (c) 2003 Michael Niedermayer
  4.  *
  5.  * This library is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU Lesser General Public
  7.  * License as published by the Free Software Foundation; either
  8.  * version 2 of the License, or (at your option) any later version.
  9.  *
  10.  * This library is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * Lesser General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU Lesser General Public
  16.  * License along with this library; if not, write to the Free Software
  17.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  18.  */
  19.  
  20. /**
  21.  * @file 4xm.c
  22.  * 4XM codec.
  23.  */
  24.  
  25. #include "avcodec.h"
  26. #include "dsputil.h"
  27. #include "mpegvideo.h"
  28. //#undef NDEBUG
  29. //#include <assert.h>
  30. #define BLOCK_TYPE_VLC_BITS 5
  31. #define ACDC_VLC_BITS 9
  32. #define CFRAME_BUFFER_COUNT 100
  33. static const uint8_t block_type_tab[4][8][2]={
  34.   {   //{8,4,2}x{8,4,2}
  35.     { 0,1}, { 2,2}, { 6,3}, {14,4}, {30,5}, {31,5}, { 0,0}
  36.   },{ //{8,4}x1
  37.     { 0,1}, { 0,0}, { 2,2}, { 6,3}, {14,4}, {15,4}, { 0,0}
  38.   },{ //1x{8,4}
  39.     { 0,1}, { 2,2}, { 0,0}, { 6,3}, {14,4}, {15,4}, { 0,0}
  40.   },{ //1x2, 2x1
  41.     { 0,1}, { 0,0}, { 0,0}, { 2,2}, { 6,3}, {14,4}, {15,4}
  42.   }
  43. };
  44. static const uint8_t size2index[4][4]={
  45.   {-1, 3, 1, 1},
  46.   { 3, 0, 0, 0},
  47.   { 2, 0, 0, 0},
  48.   { 2, 0, 0, 0},
  49. };
  50. static const int8_t mv[256][2]={
  51. {  0,  0},{  0, -1},{ -1,  0},{  1,  0},{  0,  1},{ -1, -1},{  1, -1},{ -1,  1},
  52. {  1,  1},{  0, -2},{ -2,  0},{  2,  0},{  0,  2},{ -1, -2},{  1, -2},{ -2, -1},
  53. {  2, -1},{ -2,  1},{  2,  1},{ -1,  2},{  1,  2},{ -2, -2},{  2, -2},{ -2,  2},
  54. {  2,  2},{  0, -3},{ -3,  0},{  3,  0},{  0,  3},{ -1, -3},{  1, -3},{ -3, -1},
  55. {  3, -1},{ -3,  1},{  3,  1},{ -1,  3},{  1,  3},{ -2, -3},{  2, -3},{ -3, -2},
  56. {  3, -2},{ -3,  2},{  3,  2},{ -2,  3},{  2,  3},{  0, -4},{ -4,  0},{  4,  0},
  57. {  0,  4},{ -1, -4},{  1, -4},{ -4, -1},{  4, -1},{  4,  1},{ -1,  4},{  1,  4},
  58. { -3, -3},{ -3,  3},{  3,  3},{ -2, -4},{ -4, -2},{  4, -2},{ -4,  2},{ -2,  4},
  59. {  2,  4},{ -3, -4},{  3, -4},{  4, -3},{ -5,  0},{ -4,  3},{ -3,  4},{  3,  4},
  60. { -1, -5},{ -5, -1},{ -5,  1},{ -1,  5},{ -2, -5},{  2, -5},{  5, -2},{  5,  2},
  61. { -4, -4},{ -4,  4},{ -3, -5},{ -5, -3},{ -5,  3},{  3,  5},{ -6,  0},{  0,  6},
  62. { -6, -1},{ -6,  1},{  1,  6},{  2, -6},{ -6,  2},{  2,  6},{ -5, -4},{  5,  4},
  63. {  4,  5},{ -6, -3},{  6,  3},{ -7,  0},{ -1, -7},{  5, -5},{ -7,  1},{ -1,  7},
  64. {  4, -6},{  6,  4},{ -2, -7},{ -7,  2},{ -3, -7},{  7, -3},{  3,  7},{  6, -5},
  65. {  0, -8},{ -1, -8},{ -7, -4},{ -8,  1},{  4,  7},{  2, -8},{ -2,  8},{  6,  6},
  66. { -8,  3},{  5, -7},{ -5,  7},{  8, -4},{  0, -9},{ -9, -1},{  1,  9},{  7, -6},
  67. { -7,  6},{ -5, -8},{ -5,  8},{ -9,  3},{  9, -4},{  7, -7},{  8, -6},{  6,  8},
  68. { 10,  1},{-10,  2},{  9, -5},{ 10, -3},{ -8, -7},{-10, -4},{  6, -9},{-11,  0},
  69. { 11,  1},{-11, -2},{ -2, 11},{  7, -9},{ -7,  9},{ 10,  6},{ -4, 11},{  8, -9},
  70. {  8,  9},{  5, 11},{  7,-10},{ 12, -3},{ 11,  6},{ -9, -9},{  8, 10},{  5, 12},
  71. {-11,  7},{ 13,  2},{  6,-12},{ 10,  9},{-11,  8},{ -7, 12},{  0, 14},{ 14, -2},
  72. { -9, 11},{ -6, 13},{-14, -4},{ -5,-14},{  5, 14},{-15, -1},{-14, -6},{  3,-15},
  73. { 11,-11},{ -7, 14},{ -5, 15},{  8,-14},{ 15,  6},{  3, 16},{  7,-15},{-16,  5},
  74. {  0, 17},{-16, -6},{-10, 14},{-16,  7},{ 12, 13},{-16,  8},{-17,  6},{-18,  3},
  75. { -7, 17},{ 15, 11},{ 16, 10},{  2,-19},{  3,-19},{-11,-16},{-18,  8},{-19, -6},
  76. {  2,-20},{-17,-11},{-10,-18},{  8, 19},{-21, -1},{-20,  7},{ -4, 21},{ 21,  5},
  77. { 15, 16},{  2,-22},{-10,-20},{-22,  5},{ 20,-11},{ -7,-22},{-12, 20},{ 23, -5},
  78. { 13,-20},{ 24, -2},{-15, 19},{-11, 22},{ 16, 19},{ 23,-10},{-18,-18},{ -9,-24},
  79. { 24,-10},{ -3, 26},{-23, 13},{-18,-20},{ 17, 21},{ -4, 27},{ 27,  6},{  1,-28},
  80. {-11, 26},{-17,-23},{  7, 28},{ 11,-27},{ 29,  5},{-23,-19},{-28,-11},{-21, 22},
  81. {-30,  7},{-17, 26},{-27, 16},{ 13, 29},{ 19,-26},{ 10,-31},{-14,-30},{ 20,-27},
  82. {-29, 18},{-16,-31},{-28,-22},{ 21,-30},{-25, 28},{ 26,-29},{ 25,-32},{-32,-32}
  83. };
  84. // this is simply the scaled down elementwise product of the standard jpeg quantizer table and the AAN premul table
  85. static const uint8_t dequant_table[64]={
  86.  16, 15, 13, 19, 24, 31, 28, 17,
  87.  17, 23, 25, 31, 36, 63, 45, 21,
  88.  18, 24, 27, 37, 52, 59, 49, 20,
  89.  16, 28, 34, 40, 60, 80, 51, 20,
  90.  18, 31, 48, 66, 68, 86, 56, 21,
  91.  19, 38, 56, 59, 64, 64, 48, 20,
  92.  27, 48, 55, 55, 56, 51, 35, 15,
  93.  20, 35, 34, 32, 31, 22, 15,  8,
  94. };
  95. static VLC block_type_vlc[4];
  96. typedef struct CFrameBuffer{
  97.     int allocated_size;
  98.     int size;
  99.     int id;
  100.     uint8_t *data;
  101. }CFrameBuffer;
  102. typedef struct FourXContext{
  103.     AVCodecContext *avctx;
  104.     DSPContext dsp;
  105.     AVFrame current_picture, last_picture;
  106.     GetBitContext pre_gb;          ///< ac/dc prefix
  107.     GetBitContext gb;
  108.     uint8_t *bytestream;
  109.     uint16_t *wordstream;
  110.     int mv[256];
  111.     VLC pre_vlc;
  112.     int last_dc;
  113.     DCTELEM __align8 block[6][64];
  114.     uint8_t *bitstream_buffer;
  115.     int bitstream_buffer_size;
  116.     CFrameBuffer cfrm[CFRAME_BUFFER_COUNT];
  117. } FourXContext;
  118. #define FIX_1_082392200  70936
  119. #define FIX_1_414213562  92682
  120. #define FIX_1_847759065 121095
  121. #define FIX_2_613125930 171254
  122. #define MULTIPLY(var,const)  (((var)*(const)) >> 16)
  123. static void idct(DCTELEM block[64]){
  124.     int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
  125.     int tmp10, tmp11, tmp12, tmp13;
  126.     int z5, z10, z11, z12, z13;
  127.     int i;
  128.     int temp[64];
  129.     
  130.     for(i=0; i<8; i++){
  131.         tmp10 = block[8*0 + i] + block[8*4 + i];
  132.         tmp11 = block[8*0 + i] - block[8*4 + i];
  133.         tmp13 =          block[8*2 + i] + block[8*6 + i];
  134.         tmp12 = MULTIPLY(block[8*2 + i] - block[8*6 + i], FIX_1_414213562) - tmp13;
  135.         tmp0 = tmp10 + tmp13;
  136.         tmp3 = tmp10 - tmp13;
  137.         tmp1 = tmp11 + tmp12;
  138.         tmp2 = tmp11 - tmp12;
  139.         
  140.         z13 = block[8*5 + i] + block[8*3 + i];
  141.         z10 = block[8*5 + i] - block[8*3 + i];
  142.         z11 = block[8*1 + i] + block[8*7 + i];
  143.         z12 = block[8*1 + i] - block[8*7 + i];
  144.         tmp7  =          z11 + z13;
  145.         tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562);
  146.         z5    = MULTIPLY(z10 + z12, FIX_1_847759065);
  147.         tmp10 = MULTIPLY(z12, FIX_1_082392200) - z5;
  148.         tmp12 = MULTIPLY(z10, - FIX_2_613125930) + z5;
  149.         tmp6 = tmp12 - tmp7;
  150.         tmp5 = tmp11 - tmp6;
  151.         tmp4 = tmp10 + tmp5;
  152.         temp[8*0 + i] = tmp0 + tmp7;
  153.         temp[8*7 + i] = tmp0 - tmp7;
  154.         temp[8*1 + i] = tmp1 + tmp6;
  155.         temp[8*6 + i] = tmp1 - tmp6;
  156.         temp[8*2 + i] = tmp2 + tmp5;
  157.         temp[8*5 + i] = tmp2 - tmp5;
  158.         temp[8*4 + i] = tmp3 + tmp4;
  159.         temp[8*3 + i] = tmp3 - tmp4;
  160.     }
  161.   
  162.     for(i=0; i<8*8; i+=8){
  163.         tmp10 = temp[0 + i] + temp[4 + i];
  164.         tmp11 = temp[0 + i] - temp[4 + i];
  165.         tmp13 = temp[2 + i] + temp[6 + i];
  166.         tmp12 = MULTIPLY(temp[2 + i] - temp[6 + i], FIX_1_414213562) - tmp13;
  167.         tmp0 = tmp10 + tmp13;
  168.         tmp3 = tmp10 - tmp13;
  169.         tmp1 = tmp11 + tmp12;
  170.         tmp2 = tmp11 - tmp12;
  171.         z13 = temp[5 + i] + temp[3 + i];
  172.         z10 = temp[5 + i] - temp[3 + i];
  173.         z11 = temp[1 + i] + temp[7 + i];
  174.         z12 = temp[1 + i] - temp[7 + i];
  175.         tmp7 = z11 + z13;
  176.         tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562);
  177.         z5 = MULTIPLY(z10 + z12, FIX_1_847759065);
  178.         tmp10 = MULTIPLY(z12, FIX_1_082392200) - z5;
  179.         tmp12 = MULTIPLY(z10, - FIX_2_613125930) + z5;
  180.         tmp6 = tmp12 - tmp7;
  181.         tmp5 = tmp11 - tmp6;
  182.         tmp4 = tmp10 + tmp5;
  183.         block[0 + i] = (tmp0 + tmp7)>>6;
  184.         block[7 + i] = (tmp0 - tmp7)>>6;
  185.         block[1 + i] = (tmp1 + tmp6)>>6;
  186.         block[6 + i] = (tmp1 - tmp6)>>6;
  187.         block[2 + i] = (tmp2 + tmp5)>>6;
  188.         block[5 + i] = (tmp2 - tmp5)>>6;
  189.         block[4 + i] = (tmp3 + tmp4)>>6;
  190.         block[3 + i] = (tmp3 - tmp4)>>6;
  191.     }
  192. }
  193. static void init_vlcs(FourXContext *f){
  194.     int i;
  195.     for(i=0; i<4; i++){
  196.         init_vlc(&block_type_vlc[i], BLOCK_TYPE_VLC_BITS, 7, 
  197.                  &block_type_tab[i][0][1], 2, 1,
  198.                  &block_type_tab[i][0][0], 2, 1, 1);
  199.     }
  200. }
  201. static void init_mv(FourXContext *f){
  202.     int i;
  203.     for(i=0; i<256; i++){
  204.         f->mv[i] = mv[i][0] + mv[i][1]*f->current_picture.linesize[0]/2;
  205.     }
  206. }
  207. static inline void mcdc(uint16_t *dst, uint16_t *src, int log2w, int h, int stride, int scale, int dc){
  208.    int i;
  209.    dc*= 0x10001;
  210.    switch(log2w){
  211.    case 0:
  212.         for(i=0; i<h; i++){
  213.             dst[0] = scale*src[0] + dc;
  214.             if(scale) src += stride;
  215.             dst += stride;
  216.         }
  217.         break;
  218.     case 1:
  219.         for(i=0; i<h; i++){
  220.             ((uint32_t*)dst)[0] = scale*((uint32_t*)src)[0] + dc;
  221.             if(scale) src += stride;
  222.             dst += stride;
  223.         }
  224.         break;
  225.     case 2:
  226.         for(i=0; i<h; i++){
  227.             ((uint32_t*)dst)[0] = scale*((uint32_t*)src)[0] + dc;
  228.             ((uint32_t*)dst)[1] = scale*((uint32_t*)src)[1] + dc;
  229.             if(scale) src += stride;
  230.             dst += stride;
  231.         }
  232.         break;
  233.     case 3:
  234.         for(i=0; i<h; i++){
  235.             ((uint32_t*)dst)[0] = scale*((uint32_t*)src)[0] + dc;
  236.             ((uint32_t*)dst)[1] = scale*((uint32_t*)src)[1] + dc;
  237.             ((uint32_t*)dst)[2] = scale*((uint32_t*)src)[2] + dc;
  238.             ((uint32_t*)dst)[3] = scale*((uint32_t*)src)[3] + dc;
  239.             if(scale) src += stride;
  240.             dst += stride;
  241.         }
  242.         break;
  243.     default: assert(0);
  244.     }
  245. }
  246. static void decode_p_block(FourXContext *f, uint16_t *dst, uint16_t *src, int log2w, int log2h, int stride){
  247.     const int index= size2index[log2h][log2w];
  248.     const int h= 1<<log2h;
  249.     int code= get_vlc2(&f->gb, block_type_vlc[index].table, BLOCK_TYPE_VLC_BITS, 1);
  250.     
  251.     assert(code>=0 && code<=6);
  252.     if(code == 0){
  253.         src += f->mv[ *f->bytestream++ ];
  254.         mcdc(dst, src, log2w, h, stride, 1, 0);
  255.     }else if(code == 1){
  256.         log2h--;
  257.         decode_p_block(f, dst                  , src                  , log2w, log2h, stride);
  258.         decode_p_block(f, dst + (stride<<log2h), src + (stride<<log2h), log2w, log2h, stride);
  259.     }else if(code == 2){
  260.         log2w--;
  261.         decode_p_block(f, dst             , src             , log2w, log2h, stride);
  262.         decode_p_block(f, dst + (1<<log2w), src + (1<<log2w), log2w, log2h, stride);
  263.     }else if(code == 4){
  264.         src += f->mv[ *f->bytestream++ ];
  265.         mcdc(dst, src, log2w, h, stride, 1, le2me_16(*f->wordstream++));
  266.     }else if(code == 5){
  267.         mcdc(dst, src, log2w, h, stride, 0, le2me_16(*f->wordstream++));
  268.     }else if(code == 6){
  269.         if(log2w){
  270.             dst[0] = le2me_16(*f->wordstream++);
  271.             dst[1] = le2me_16(*f->wordstream++);
  272.         }else{
  273.             dst[0     ] = le2me_16(*f->wordstream++);
  274.             dst[stride] = le2me_16(*f->wordstream++);
  275.         }
  276.     }
  277. }
  278. static int get32(void *p){
  279.     return le2me_32(*(uint32_t*)p);
  280. }
  281. static int decode_p_frame(FourXContext *f, uint8_t *buf, int length){
  282.     int x, y;
  283.     const int width= f->avctx->width;
  284.     const int height= f->avctx->height;
  285.     uint16_t *src= (uint16_t*)f->last_picture.data[0];
  286.     uint16_t *dst= (uint16_t*)f->current_picture.data[0];
  287.     const int stride= f->current_picture.linesize[0]>>1;
  288.     const unsigned int bitstream_size= get32(buf+8);
  289.     const unsigned int bytestream_size= get32(buf+16);
  290.     const unsigned int wordstream_size= get32(buf+12);
  291.     
  292.     if(bitstream_size+ bytestream_size+ wordstream_size + 20 != length
  293.        || bitstream_size  > (1<<26)
  294.        || bytestream_size > (1<<26)
  295.        || wordstream_size > (1<<26)
  296.        ){
  297.         av_log(f->avctx, AV_LOG_ERROR, "lengths %d %d %d %dn", bitstream_size, bytestream_size, wordstream_size, 
  298.         bitstream_size+ bytestream_size+ wordstream_size - length);
  299.         return -1;
  300.     }
  301.     
  302.     f->bitstream_buffer= av_fast_realloc(f->bitstream_buffer, &f->bitstream_buffer_size, bitstream_size + FF_INPUT_BUFFER_PADDING_SIZE);
  303.     f->dsp.bswap_buf((uint32_t*)f->bitstream_buffer, (uint32_t*)(buf + 20), bitstream_size/4);
  304.     init_get_bits(&f->gb, f->bitstream_buffer, 8*bitstream_size);
  305.     f->wordstream= (uint16_t*)(buf + 20 + bitstream_size);
  306.     f->bytestream= buf + 20 + bitstream_size + wordstream_size;
  307.     
  308.     init_mv(f);
  309.     
  310.     for(y=0; y<height; y+=8){
  311.         for(x=0; x<width; x+=8){
  312.             decode_p_block(f, dst + x, src + x, 3, 3, stride);
  313.         }
  314.         src += 8*stride; 
  315.         dst += 8*stride; 
  316.     }
  317.     
  318.     if(bitstream_size != (get_bits_count(&f->gb)+31)/32*4)
  319.         av_log(f->avctx, AV_LOG_ERROR, " %d %d %d bytes leftn", 
  320.             bitstream_size - (get_bits_count(&f->gb)+31)/32*4, 
  321.             bytestream_size - (f->bytestream - (buf + 20 + bitstream_size + wordstream_size)),
  322.             wordstream_size - (((uint8_t*)f->wordstream) - (buf + 20 + bitstream_size))
  323.         );
  324.     
  325.     return 0;
  326. }
  327. /**
  328.  * decode block and dequantize.
  329.  * Note this is allmost identical to mjpeg
  330.  */
  331. static int decode_i_block(FourXContext *f, DCTELEM *block){
  332.     int code, i, j, level, val;
  333.     /* DC coef */
  334.     val = get_vlc2(&f->pre_gb, f->pre_vlc.table, ACDC_VLC_BITS, 3);
  335.     if (val>>4){
  336.         av_log(f->avctx, AV_LOG_ERROR, "error dc run != 0n");
  337.     }
  338.     if(val)
  339.         val = get_xbits(&f->gb, val);
  340.     val = val * dequant_table[0] + f->last_dc;
  341.     f->last_dc =
  342.     block[0] = val;
  343.     /* AC coefs */
  344.     i = 1;
  345.     for(;;) {
  346.         code = get_vlc2(&f->pre_gb, f->pre_vlc.table, ACDC_VLC_BITS, 3);
  347.         
  348.         /* EOB */
  349.         if (code == 0)
  350.             break;
  351.         if (code == 0xf0) {
  352.             i += 16;
  353.         } else {
  354.             level = get_xbits(&f->gb, code & 0xf);
  355.             i += code >> 4;
  356.             if (i >= 64) {
  357.                 av_log(f->avctx, AV_LOG_ERROR, "run %d oveflown", i);
  358.                 return 0;
  359.             }
  360.             j= ff_zigzag_direct[i];
  361.             block[j] = level * dequant_table[j];
  362.             i++;
  363.             if (i >= 64)
  364.                 break;
  365.         }
  366.     }
  367.     return 0;
  368. }
  369. static inline void idct_put(FourXContext *f, int x, int y){
  370.     DCTELEM (*block)[64]= f->block;
  371.     int stride= f->current_picture.linesize[0]>>1;
  372.     int i;
  373.     uint16_t *dst = ((uint16_t*)f->current_picture.data[0]) + y * stride + x;
  374.     
  375.     for(i=0; i<4; i++){
  376.         block[i][0] += 0x80*8*8;
  377.         idct(block[i]);
  378.     }
  379.     if(!(f->avctx->flags&CODEC_FLAG_GRAY)){
  380.         for(i=4; i<6; i++) idct(block[i]);
  381.     }
  382. /* Note transform is:
  383. y= ( 1b + 4g + 2r)/14
  384. cb=( 3b - 2g - 1r)/14
  385. cr=(-1b - 4g + 5r)/14
  386. */ 
  387.     for(y=0; y<8; y++){
  388.         for(x=0; x<8; x++){
  389.             DCTELEM *temp= block[(x>>2) + 2*(y>>2)] + 2*(x&3) + 2*8*(y&3); //FIXME optimize
  390.             int cb= block[4][x + 8*y];
  391.             int cr= block[5][x + 8*y];
  392.             int cg= (cb + cr)>>1;
  393.             int y;
  394.             
  395.             cb+=cb;
  396.             
  397.             y = temp[0];
  398.             dst[0       ]= ((y+cb)>>3) + (((y-cg)&0xFC)<<3) + (((y+cr)&0xF8)<<8);
  399.             y = temp[1];
  400.             dst[1       ]= ((y+cb)>>3) + (((y-cg)&0xFC)<<3) + (((y+cr)&0xF8)<<8);
  401.             y = temp[8];
  402.             dst[  stride]= ((y+cb)>>3) + (((y-cg)&0xFC)<<3) + (((y+cr)&0xF8)<<8);
  403.             y = temp[9];
  404.             dst[1+stride]= ((y+cb)>>3) + (((y-cg)&0xFC)<<3) + (((y+cr)&0xF8)<<8);
  405.             dst += 2;
  406.         }
  407.         dst += 2*stride - 2*8;
  408.     }
  409. }
  410. static int decode_i_mb(FourXContext *f){
  411.     int i;
  412.     
  413.     f->dsp.clear_blocks(f->block[0]);
  414.     
  415.     for(i=0; i<6; i++){
  416.         if(decode_i_block(f, f->block[i]) < 0)
  417.             return -1;
  418.     }
  419.     
  420.     return 0;
  421. }
  422. static uint8_t *read_huffman_tables(FourXContext *f, uint8_t * const buf){
  423.     int frequency[512];
  424.     uint8_t flag[512];
  425.     int up[512];
  426.     uint8_t len_tab[257];
  427.     int bits_tab[257];
  428.     int start, end;
  429.     uint8_t *ptr= buf;
  430.     int j;
  431.     
  432.     memset(frequency, 0, sizeof(frequency));
  433.     memset(up, -1, sizeof(up));
  434.     start= *ptr++;
  435.     end= *ptr++;
  436.     for(;;){
  437.         int i;
  438.         
  439.         for(i=start; i<=end; i++){
  440.             frequency[i]= *ptr++;
  441. //            printf("%d %d %dn", start, end, frequency[i]);
  442.         }
  443.         start= *ptr++;
  444.         if(start==0) break;
  445.         
  446.         end= *ptr++;
  447.     }
  448.     frequency[256]=1;
  449.     while((ptr - buf)&3) ptr++; // 4byte align 
  450. //    for(j=0; j<16; j++)
  451. //        printf("%2X", ptr[j]);
  452.     
  453.     for(j=257; j<512; j++){
  454.         int min_freq[2]= {256*256, 256*256};
  455.         int smallest[2]= {0, 0};
  456.         int i;
  457.         for(i=0; i<j; i++){
  458.             if(frequency[i] == 0) continue;
  459.             if(frequency[i] < min_freq[1]){
  460.                 if(frequency[i] < min_freq[0]){
  461.                     min_freq[1]= min_freq[0]; smallest[1]= smallest[0];
  462.                     min_freq[0]= frequency[i];smallest[0]= i;
  463.                 }else{
  464.                     min_freq[1]= frequency[i];smallest[1]= i;
  465.                 }
  466.             }
  467.         }
  468.         if(min_freq[1] == 256*256) break;
  469.         
  470.         frequency[j]= min_freq[0] + min_freq[1];
  471.         flag[ smallest[0] ]= 0;
  472.         flag[ smallest[1] ]= 1;
  473.         up[ smallest[0] ]= 
  474.         up[ smallest[1] ]= j;
  475.         frequency[ smallest[0] ]= frequency[ smallest[1] ]= 0;
  476.     }
  477.     for(j=0; j<257; j++){
  478.         int node;
  479.         int len=0;
  480.         int bits=0;
  481.         for(node= j; up[node] != -1; node= up[node]){
  482.             bits += flag[node]<<len;
  483.             len++;
  484.             if(len > 31) av_log(f->avctx, AV_LOG_ERROR, "vlc length overflown"); //can this happen at all ?
  485.         }
  486.         
  487.         bits_tab[j]= bits;
  488.         len_tab[j]= len;
  489.     }
  490.     
  491.     init_vlc(&f->pre_vlc, ACDC_VLC_BITS, 257, 
  492.              len_tab , 1, 1,
  493.              bits_tab, 4, 4, 0);
  494.              
  495.     return ptr;
  496. }
  497. static int decode_i_frame(FourXContext *f, uint8_t *buf, int length){
  498.     int x, y;
  499.     const int width= f->avctx->width;
  500.     const int height= f->avctx->height;
  501.     uint16_t *dst= (uint16_t*)f->current_picture.data[0];
  502.     const int stride= f->current_picture.linesize[0]>>1;
  503.     const unsigned int bitstream_size= get32(buf);
  504.     const int token_count __attribute__((unused)) = get32(buf + bitstream_size + 8);
  505.     unsigned int prestream_size= 4*get32(buf + bitstream_size + 4);
  506.     uint8_t *prestream= buf + bitstream_size + 12;
  507.     
  508.     if(prestream_size + bitstream_size + 12 != length
  509.        || bitstream_size > (1<<26)
  510.        || prestream_size > (1<<26)){
  511.         av_log(f->avctx, AV_LOG_ERROR, "size mismatch %d %d %dn", prestream_size, bitstream_size, length);
  512.         return -1;
  513.     }
  514.    
  515.     prestream= read_huffman_tables(f, prestream);
  516.     init_get_bits(&f->gb, buf + 4, 8*bitstream_size);
  517.     prestream_size= length + buf - prestream;
  518.     f->bitstream_buffer= av_fast_realloc(f->bitstream_buffer, &f->bitstream_buffer_size, prestream_size + FF_INPUT_BUFFER_PADDING_SIZE);
  519.     f->dsp.bswap_buf((uint32_t*)f->bitstream_buffer, (uint32_t*)prestream, prestream_size/4);
  520.     init_get_bits(&f->pre_gb, f->bitstream_buffer, 8*prestream_size);
  521.     f->last_dc= 0*128*8*8;
  522.     
  523.     for(y=0; y<height; y+=16){
  524.         for(x=0; x<width; x+=16){
  525.             if(decode_i_mb(f) < 0)
  526.                 return -1;
  527.             idct_put(f, x, y);
  528.         }
  529.         dst += 16*stride; 
  530.     }
  531.     if(get_vlc2(&f->pre_gb, f->pre_vlc.table, ACDC_VLC_BITS, 3) != 256)
  532.         av_log(f->avctx, AV_LOG_ERROR, "end mismatchn");
  533.     
  534.     return 0;
  535. }
  536. static int decode_frame(AVCodecContext *avctx, 
  537.                         void *data, int *data_size,
  538.                         uint8_t *buf, int buf_size)
  539. {
  540.     FourXContext * const f = avctx->priv_data;
  541.     AVFrame *picture = data;
  542.     AVFrame *p, temp;
  543.     int i, frame_4cc, frame_size;
  544.     frame_4cc= get32(buf);
  545.     if(buf_size != get32(buf+4)+8){
  546.         av_log(f->avctx, AV_LOG_ERROR, "size mismatch %d %dn", buf_size, get32(buf+4));
  547.     }
  548.     if(frame_4cc == ff_get_fourcc("cfrm")){
  549.         int free_index=-1;
  550.         const int data_size= buf_size - 20;
  551.         const int id= get32(buf+12);
  552.         const int whole_size= get32(buf+16);
  553.         CFrameBuffer *cfrm;
  554.         for(i=0; i<CFRAME_BUFFER_COUNT; i++){
  555.             if(f->cfrm[i].id && f->cfrm[i].id < avctx->frame_number)
  556.                 av_log(f->avctx, AV_LOG_ERROR, "lost c frame %dn", f->cfrm[i].id);
  557.         }
  558.         
  559.         for(i=0; i<CFRAME_BUFFER_COUNT; i++){
  560.             if(f->cfrm[i].id   == id) break;
  561.             if(f->cfrm[i].size == 0 ) free_index= i;
  562.         }
  563.         if(i>=CFRAME_BUFFER_COUNT){
  564.             i= free_index;
  565.             f->cfrm[i].id= id;
  566.         }
  567.         cfrm= &f->cfrm[i];
  568.         
  569.         cfrm->data= av_fast_realloc(cfrm->data, &cfrm->allocated_size, cfrm->size + data_size + FF_INPUT_BUFFER_PADDING_SIZE);
  570.         
  571.         memcpy(cfrm->data + cfrm->size, buf+20, data_size);
  572.         cfrm->size += data_size;
  573.         
  574.         if(cfrm->size >= whole_size){
  575.             buf= cfrm->data;
  576.             frame_size= cfrm->size;
  577.             
  578.             if(id != avctx->frame_number){
  579.                 av_log(f->avctx, AV_LOG_ERROR, "cframe id mismatch %d %dn", id, avctx->frame_number);
  580.             }
  581.             
  582.             cfrm->size= cfrm->id= 0;
  583.             frame_4cc= ff_get_fourcc("pfrm");
  584.         }else
  585.             return buf_size;
  586.     }else{
  587.         buf= buf + 12;
  588.         frame_size= buf_size - 12;
  589.     }    
  590.     temp= f->current_picture;
  591.     f->current_picture= f->last_picture;
  592.     f->last_picture= temp;
  593.     p= &f->current_picture;
  594.     avctx->coded_frame= p;
  595.     avctx->flags |= CODEC_FLAG_EMU_EDGE; // alternatively we would have to use our own buffer management
  596.     if(p->data[0])
  597.         avctx->release_buffer(avctx, p);
  598.     p->reference= 1;
  599.     if(avctx->get_buffer(avctx, p) < 0){
  600.         av_log(avctx, AV_LOG_ERROR, "get_buffer() failedn");
  601.         return -1;
  602.     }
  603.     if(frame_4cc == ff_get_fourcc("ifrm")){
  604.         p->pict_type= I_TYPE;
  605.         if(decode_i_frame(f, buf, frame_size) < 0)
  606.             return -1;
  607.     }else if(frame_4cc == ff_get_fourcc("pfrm")){
  608.         p->pict_type= P_TYPE;
  609.         if(decode_p_frame(f, buf, frame_size) < 0)
  610.             return -1;
  611.     }else if(frame_4cc == ff_get_fourcc("snd_")){
  612.         av_log(avctx, AV_LOG_ERROR, "ignoring snd_ chunk length:%dn", buf_size);
  613.     }else{
  614.         av_log(avctx, AV_LOG_ERROR, "ignoring unknown chunk length:%dn", buf_size);
  615.     }
  616. #if 0
  617. for(i=0; i<20; i++){
  618.     printf("%2X %c ", buf[i], clip(buf[i],16,126));
  619. }
  620. #endif
  621.     p->key_frame= p->pict_type == I_TYPE;
  622.     *picture= *p;
  623.     *data_size = sizeof(AVPicture);
  624.     emms_c();
  625.     
  626.     return buf_size;
  627. }
  628. static void common_init(AVCodecContext *avctx){
  629.     FourXContext * const f = avctx->priv_data;
  630.     dsputil_init(&f->dsp, avctx);
  631.     f->avctx= avctx;
  632. }
  633. static int decode_init(AVCodecContext *avctx){
  634.     FourXContext * const f = avctx->priv_data;
  635.  
  636.     common_init(avctx);
  637.     init_vlcs(f);
  638.     avctx->pix_fmt= PIX_FMT_RGB565;
  639.     return 0;
  640. }
  641. static int decode_end(AVCodecContext *avctx){
  642.     FourXContext * const f = avctx->priv_data;
  643.     int i;
  644.     av_freep(&f->bitstream_buffer);
  645.     f->bitstream_buffer_size=0;
  646.     for(i=0; i<CFRAME_BUFFER_COUNT; i++){
  647.         av_freep(&f->cfrm[i].data);
  648.         f->cfrm[i].allocated_size= 0;
  649.     }
  650.     free_vlc(&f->pre_vlc);
  651.     
  652.     return 0;
  653. }
  654. AVCodec fourxm_decoder = {
  655.     "4xm",
  656.     CODEC_TYPE_VIDEO,
  657.     CODEC_ID_4XM,
  658.     sizeof(FourXContext),
  659.     decode_init,
  660.     NULL,
  661.     decode_end,
  662.     decode_frame,
  663.     /*CODEC_CAP_DR1,*/
  664. };