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

Windows CE

开发平台:

C/C++

  1. /*
  2.  * FFV1 codec for libavcodec
  3.  *
  4.  * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Lesser General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * Lesser General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Lesser General Public
  17.  * License along with this library; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  *
  20.  */
  21.  
  22. /**
  23.  * @file ffv1.c
  24.  * FF Video Codec 1 (an experimental lossless codec)
  25.  */
  26. #include "common.h"
  27. #include "bitstream.h"
  28. #include "avcodec.h"
  29. #include "dsputil.h"
  30. #include "rangecoder.h"
  31. #include "golomb.h"
  32. #define MAX_PLANES 4
  33. #define CONTEXT_SIZE 32
  34. static const int8_t quant3[256]={
  35.  0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  36.  1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  37.  1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  38.  1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  39.  1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  40.  1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  41.  1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  42.  1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  43. -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
  44. -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
  45. -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
  46. -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
  47. -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
  48. -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
  49. -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
  50. -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, 0,
  51. };
  52. static const int8_t quant5[256]={
  53.  0, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
  54.  2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
  55.  2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
  56.  2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
  57.  2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
  58.  2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
  59.  2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
  60.  2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
  61. -2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,
  62. -2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,
  63. -2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,
  64. -2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,
  65. -2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,
  66. -2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,
  67. -2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,
  68. -2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-1,-1,-1,
  69. };
  70. static const int8_t quant7[256]={
  71.  0, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
  72.  2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
  73.  2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3,
  74.  3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
  75.  3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
  76.  3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
  77.  3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
  78.  3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
  79. -3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,
  80. -3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,
  81. -3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,
  82. -3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,
  83. -3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,
  84. -3,-3,-3,-3,-3,-3,-3,-3,-3,-2,-2,-2,-2,-2,-2,-2,
  85. -2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,
  86. -2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-1,-1,
  87. };
  88. static const int8_t quant9[256]={
  89.  0, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3,
  90.  3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  91.  4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  92.  4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  93.  4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  94.  4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  95.  4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  96.  4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  97. -4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,
  98. -4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,
  99. -4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,
  100. -4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,
  101. -4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,
  102. -4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,
  103. -4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-3,-3,-3,-3,
  104. -3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-2,-2,-2,-2,-1,-1,
  105. };
  106. static const int8_t quant11[256]={
  107.  0, 1, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4,
  108.  4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  109.  4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
  110.  5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
  111.  5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
  112.  5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
  113.  5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
  114.  5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
  115. -5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,
  116. -5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,
  117. -5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,
  118. -5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,
  119. -5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,
  120. -5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-4,-4,
  121. -4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,
  122. -4,-4,-4,-4,-4,-3,-3,-3,-3,-3,-3,-3,-2,-2,-2,-1,
  123. };
  124. static const int8_t quant13[256]={
  125.  0, 1, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4,
  126.  4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
  127.  5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
  128.  5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
  129.  6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
  130.  6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
  131.  6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
  132.  6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
  133. -6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,
  134. -6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,
  135. -6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,
  136. -6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,
  137. -6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-5,
  138. -5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,
  139. -5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,
  140. -4,-4,-4,-4,-4,-4,-4,-4,-4,-3,-3,-3,-3,-2,-2,-1,
  141. };
  142. static const uint8_t log2_run[32]={
  143.  0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 
  144.  4, 4, 5, 5, 6, 6, 7, 7, 
  145.  8, 9,10,11,12,13,14,15,
  146. };
  147. typedef struct VlcState{
  148.     int16_t drift;
  149.     uint16_t error_sum;
  150.     int8_t bias;
  151.     uint8_t count;
  152. } VlcState;
  153. typedef struct PlaneContext{
  154.     int context_count;
  155.     uint8_t (*state)[CONTEXT_SIZE];
  156.     VlcState *vlc_state;
  157.     uint8_t interlace_bit_state[2];
  158. } PlaneContext;
  159. typedef struct FFV1Context{
  160.     AVCodecContext *avctx;
  161.     RangeCoder c;
  162.     GetBitContext gb;
  163.     PutBitContext pb;
  164.     int version;
  165.     int width, height;
  166.     int chroma_h_shift, chroma_v_shift;
  167.     int flags;
  168.     int picture_number;
  169.     AVFrame picture;
  170.     int plane_count;
  171.     int ac;                              ///< 1-> CABAC 0-> golomb rice
  172.     PlaneContext plane[MAX_PLANES];
  173.     int16_t quant_table[5][256];
  174.     int run_index;
  175.     int colorspace;
  176.     
  177.     DSPContext dsp; 
  178. }FFV1Context;
  179. static always_inline int fold(int diff, int bits){
  180.     if(bits==8)
  181.         diff= (int8_t)diff;
  182.     else{
  183.         diff+= 1<<(bits-1);
  184.         diff&=(1<<bits)-1;
  185.         diff-= 1<<(bits-1);
  186.     }
  187.     return diff;
  188. }
  189. static inline int predict(int_fast16_t *src, int_fast16_t *last){
  190.     const int LT= last[-1];
  191.     const int  T= last[ 0];
  192.     const int L =  src[-1];
  193.     return mid_pred(L, L + T - LT, T);
  194. }
  195. static inline int get_context(FFV1Context *f, int_fast16_t *src, int_fast16_t *last, int_fast16_t *last2){
  196.     const int LT= last[-1];
  197.     const int  T= last[ 0];
  198.     const int RT= last[ 1];
  199.     const int L =  src[-1];
  200.     if(f->quant_table[3][127]){
  201.         const int TT= last2[0];
  202.         const int LL=  src[-2];
  203.         return f->quant_table[0][(L-LT) & 0xFF] + f->quant_table[1][(LT-T) & 0xFF] + f->quant_table[2][(T-RT) & 0xFF]
  204.               +f->quant_table[3][(LL-L) & 0xFF] + f->quant_table[4][(TT-T) & 0xFF];
  205.     }else
  206.         return f->quant_table[0][(L-LT) & 0xFF] + f->quant_table[1][(LT-T) & 0xFF] + f->quant_table[2][(T-RT) & 0xFF];
  207. }
  208. static inline void put_symbol(RangeCoder *c, uint8_t *state, int v, int is_signed){
  209.     int i;
  210.     if(v){
  211.         const int a= ABS(v);
  212.         const int e= av_log2(a);
  213.         put_rac(c, state+0, 0);
  214.         
  215.         assert(e<=9);
  216.         for(i=0; i<e; i++){
  217.             put_rac(c, state+1+i, 1);  //1..10
  218.         }
  219.         put_rac(c, state+1+i, 0);
  220.         for(i=e-1; i>=0; i--){
  221.             put_rac(c, state+22+i, (a>>i)&1); //22..31
  222.         }
  223.         if(is_signed)
  224.             put_rac(c, state+11 + e, v < 0); //11..21
  225.     }else{
  226.         put_rac(c, state+0, 1);
  227.     }
  228. }
  229. static inline int get_symbol(RangeCoder *c, uint8_t *state, int is_signed){
  230.     if(get_rac(c, state+0))
  231.         return 0;
  232.     else{
  233.         int i, e, a;
  234.         e= 0;
  235.         while(get_rac(c, state+1 + e)){ //1..10
  236.             e++;
  237.         }
  238.         assert(e<=9);
  239.         a= 1;
  240.         for(i=e-1; i>=0; i--){
  241.             a += a + get_rac(c, state+22 + i); //22..31
  242.         }
  243.         if(is_signed && get_rac(c, state+11 + e)) //11..21
  244.             return -a;
  245.         else
  246.             return a;
  247.     }
  248. }
  249. static inline void update_vlc_state(VlcState * const state, const int v){
  250.     int drift= state->drift;
  251.     int count= state->count;
  252.     state->error_sum += ABS(v);
  253.     drift += v;
  254.     if(count == 128){ //FIXME variable
  255.         count >>= 1;
  256.         drift >>= 1;
  257.         state->error_sum >>= 1;
  258.     }
  259.     count++;
  260.     if(drift <= -count){
  261.         if(state->bias > -128) state->bias--;
  262.         
  263.         drift += count;
  264.         if(drift <= -count)
  265.             drift= -count + 1;
  266.     }else if(drift > 0){
  267.         if(state->bias <  127) state->bias++;
  268.         
  269.         drift -= count;
  270.         if(drift > 0) 
  271.             drift= 0;
  272.     }
  273.     state->drift= drift;
  274.     state->count= count;
  275. }
  276. static inline void put_vlc_symbol(PutBitContext *pb, VlcState * const state, int v, int bits){
  277.     int i, k, code;
  278. //printf("final: %d ", v);
  279.     v = fold(v - state->bias, bits);
  280.     i= state->count;
  281.     k=0;
  282.     while(i < state->error_sum){ //FIXME optimize
  283.         k++;
  284.         i += i;
  285.     }
  286.     assert(k<=8);
  287. #if 0 // JPEG LS
  288.     if(k==0 && 2*state->drift <= - state->count) code= v ^ (-1);
  289.     else                                         code= v;
  290. #else
  291.      code= v ^ ((2*state->drift + state->count)>>31);
  292. #endif
  293.     
  294. //printf("v:%d/%d bias:%d error:%d drift:%d count:%d k:%dn", v, code, state->bias, state->error_sum, state->drift, state->count, k);
  295.     set_sr_golomb(pb, code, k, 12, bits);
  296.     update_vlc_state(state, v);
  297. }
  298. static inline int get_vlc_symbol(GetBitContext *gb, VlcState * const state, int bits){
  299.     int k, i, v, ret;
  300.     i= state->count;
  301.     k=0;
  302.     while(i < state->error_sum){ //FIXME optimize
  303.         k++;
  304.         i += i;
  305.     }
  306.     assert(k<=8);
  307.     v= get_sr_golomb(gb, k, 12, bits);
  308. //printf("v:%d bias:%d error:%d drift:%d count:%d k:%d", v, state->bias, state->error_sum, state->drift, state->count, k);
  309. #if 0 // JPEG LS
  310.     if(k==0 && 2*state->drift <= - state->count) v ^= (-1);
  311. #else
  312.      v ^= ((2*state->drift + state->count)>>31);
  313. #endif
  314.     ret= fold(v + state->bias, bits);
  315.     
  316.     update_vlc_state(state, v);
  317. //printf("final: %dn", ret);
  318.     return ret;
  319. }
  320. static inline int encode_line(FFV1Context *s, int w, int_fast16_t *sample[2], int plane_index, int bits){
  321.     PlaneContext * const p= &s->plane[plane_index];
  322.     RangeCoder * const c= &s->c;
  323.     int x;
  324.     int run_index= s->run_index;
  325.     int run_count=0;
  326.     int run_mode=0;
  327.     if(s->ac){
  328.         if(c->bytestream_end - c->bytestream < w*20){
  329.             av_log(s->avctx, AV_LOG_ERROR, "encoded frame too largen");
  330.             return -1;
  331.         }
  332.     }else{
  333.         if(s->pb.buf_end - s->pb.buf - (put_bits_count(&s->pb)>>3) < w*4){
  334.             av_log(s->avctx, AV_LOG_ERROR, "encoded frame too largen");
  335.             return -1;
  336.         }
  337.     }
  338.     for(x=0; x<w; x++){
  339.         int diff, context;
  340.         
  341.         context= get_context(s, sample[0]+x, sample[1]+x, sample[2]+x);
  342.         diff= sample[0][x] - predict(sample[0]+x, sample[1]+x);
  343.         if(context < 0){
  344.             context = -context;
  345.             diff= -diff;
  346.         }
  347.         diff= fold(diff, bits);
  348.         
  349.         if(s->ac){
  350.             put_symbol(c, p->state[context], diff, 1);
  351.         }else{
  352.             if(context == 0) run_mode=1;
  353.             
  354.             if(run_mode){
  355.                 if(diff){
  356.                     while(run_count >= 1<<log2_run[run_index]){
  357.                         run_count -= 1<<log2_run[run_index];
  358.                         run_index++;
  359.                         put_bits(&s->pb, 1, 1);
  360.                     }
  361.                     
  362.                     put_bits(&s->pb, 1 + log2_run[run_index], run_count);
  363.                     if(run_index) run_index--;
  364.                     run_count=0;
  365.                     run_mode=0;
  366.                     if(diff>0) diff--;
  367.                 }else{
  368.                     run_count++;
  369.                 }
  370.             }
  371.             
  372. //            printf("count:%d index:%d, mode:%d, x:%d y:%d pos:%dn", run_count, run_index, run_mode, x, y, (int)put_bits_count(&s->pb));
  373.             if(run_mode == 0)
  374.                 put_vlc_symbol(&s->pb, &p->vlc_state[context], diff, bits);
  375.         }
  376.     }
  377.     if(run_mode){
  378.         while(run_count >= 1<<log2_run[run_index]){
  379.             run_count -= 1<<log2_run[run_index];
  380.             run_index++;
  381.             put_bits(&s->pb, 1, 1);
  382.         }
  383.         if(run_count)
  384.             put_bits(&s->pb, 1, 1);
  385.     }
  386.     s->run_index= run_index;
  387.     
  388.     return 0;
  389. }
  390. static void encode_plane(FFV1Context *s, uint8_t *src, int w, int h, int stride, int plane_index){
  391.     int x,y,i;
  392.     const int ring_size= s->avctx->context_model ? 3 : 2;
  393.     int_fast16_t sample_buffer[ring_size][w+6], *sample[ring_size];
  394.     s->run_index=0;
  395.     
  396.     memset(sample_buffer, 0, sizeof(sample_buffer));
  397.     
  398.     for(y=0; y<h; y++){
  399.         for(i=0; i<ring_size; i++)
  400.             sample[i]= sample_buffer[(h+i-y)%ring_size]+3;
  401.         
  402.         sample[0][-1]= sample[1][0  ];
  403.         sample[1][ w]= sample[1][w-1];
  404. //{START_TIMER
  405.         for(x=0; x<w; x++){
  406.             sample[0][x]= src[x + stride*y];
  407.         }
  408.         encode_line(s, w, sample, plane_index, 8);
  409. //STOP_TIMER("encode line")}
  410.     }
  411. }
  412. static void encode_rgb_frame(FFV1Context *s, uint32_t *src, int w, int h, int stride){
  413.     int x, y, p, i;
  414.     const int ring_size= s->avctx->context_model ? 3 : 2;
  415.     int_fast16_t sample_buffer[3][ring_size][w+6], *sample[3][ring_size];
  416.     s->run_index=0;
  417.     
  418.     memset(sample_buffer, 0, sizeof(sample_buffer));
  419.     
  420.     for(y=0; y<h; y++){
  421.         for(i=0; i<ring_size; i++)
  422.             for(p=0; p<3; p++)
  423.                 sample[p][i]= sample_buffer[p][(h+i-y)%ring_size]+3;
  424.         for(x=0; x<w; x++){
  425.             int v= src[x + stride*y];
  426.             int b= v&0xFF;
  427.             int g= (v>>8)&0xFF;
  428.             int r= (v>>16)&0xFF;
  429.             
  430.             b -= g;
  431.             r -= g;
  432.             g += (b + r)>>2;
  433.             b += 0x100;
  434.             r += 0x100;
  435.             
  436. //            assert(g>=0 && b>=0 && r>=0);
  437. //            assert(g<256 && b<512 && r<512);
  438.             sample[0][0][x]= g;
  439.             sample[1][0][x]= b;
  440.             sample[2][0][x]= r;
  441.         }
  442.         for(p=0; p<3; p++){
  443.             sample[p][0][-1]= sample[p][1][0  ];
  444.             sample[p][1][ w]= sample[p][1][w-1];
  445.             encode_line(s, w, sample[p], FFMIN(p, 1), 9);
  446.         }
  447.     }
  448. }
  449. static void write_quant_table(RangeCoder *c, int16_t *quant_table){
  450.     int last=0;
  451.     int i;
  452.     uint8_t state[CONTEXT_SIZE];
  453.     memset(state, 128, sizeof(state));
  454.     for(i=1; i<128 ; i++){
  455.         if(quant_table[i] != quant_table[i-1]){
  456.             put_symbol(c, state, i-last-1, 0);
  457.             last= i;
  458.         }
  459.     }
  460.     put_symbol(c, state, i-last-1, 0);
  461. }
  462. static void write_header(FFV1Context *f){
  463.     uint8_t state[CONTEXT_SIZE];
  464.     int i;
  465.     RangeCoder * const c= &f->c;
  466.     memset(state, 128, sizeof(state));
  467.     
  468.     put_symbol(c, state, f->version, 0);
  469.     put_symbol(c, state, f->avctx->coder_type, 0);
  470.     put_symbol(c, state, f->colorspace, 0); //YUV cs type 
  471.     put_rac(c, state, 1); //chroma planes
  472.         put_symbol(c, state, f->chroma_h_shift, 0);
  473.         put_symbol(c, state, f->chroma_v_shift, 0);
  474.     put_rac(c, state, 0); //no transparency plane
  475.     for(i=0; i<5; i++)
  476.         write_quant_table(c, f->quant_table[i]);
  477. }
  478. static int common_init(AVCodecContext *avctx){
  479.     FFV1Context *s = avctx->priv_data;
  480.     int width, height;
  481.     s->avctx= avctx;
  482.     s->flags= avctx->flags;
  483.         
  484.     dsputil_init(&s->dsp, avctx);
  485.     
  486.     width= s->width= avctx->width;
  487.     height= s->height= avctx->height;
  488.     
  489.     assert(width && height);
  490.     return 0;
  491. }
  492. static int encode_init(AVCodecContext *avctx)
  493. {
  494.     FFV1Context *s = avctx->priv_data;
  495.     int i;
  496.     if(avctx->strict_std_compliance >FF_COMPLIANCE_EXPERIMENTAL){
  497.         av_log(avctx, AV_LOG_ERROR, "this codec is under development, files encoded with it may not be decodeable with future versions!!!n"
  498.                "use vstrict=-2 / -strict -2 to use it anywayn");
  499.         return -1;
  500.     }
  501.         
  502.     common_init(avctx);
  503.  
  504.     s->version=0;
  505.     s->ac= avctx->coder_type;
  506.     
  507.     s->plane_count=2;
  508.     for(i=0; i<256; i++){
  509.         s->quant_table[0][i]=           quant11[i];
  510.         s->quant_table[1][i]=        11*quant11[i];
  511.         if(avctx->context_model==0){
  512.             s->quant_table[2][i]=     11*11*quant11[i];
  513.             s->quant_table[3][i]=
  514.             s->quant_table[4][i]=0;
  515.         }else{
  516.             s->quant_table[2][i]=     11*11*quant5 [i];
  517.             s->quant_table[3][i]=   5*11*11*quant5 [i];
  518.             s->quant_table[4][i]= 5*5*11*11*quant5 [i];
  519.         }
  520.     }
  521.     for(i=0; i<s->plane_count; i++){
  522.         PlaneContext * const p= &s->plane[i];
  523.                
  524.         if(avctx->context_model==0){
  525.             p->context_count= (11*11*11+1)/2;
  526.         }else{        
  527.             p->context_count= (11*11*5*5*5+1)/2;
  528.         }
  529.         if(s->ac){
  530.             if(!p->state) p->state= av_malloc(CONTEXT_SIZE*p->context_count*sizeof(uint8_t));
  531.         }else{
  532.             if(!p->vlc_state) p->vlc_state= av_malloc(p->context_count*sizeof(VlcState));
  533.         }
  534.     }
  535.     avctx->coded_frame= &s->picture;
  536.     switch(avctx->pix_fmt){
  537.     case PIX_FMT_YUV444P:
  538.     case PIX_FMT_YUV422P:
  539.     case PIX_FMT_YUV420P:
  540.     case PIX_FMT_YUV411P:
  541.     case PIX_FMT_YUV410P:
  542.         s->colorspace= 0;
  543.         break;
  544.     case PIX_FMT_RGBA32:
  545.         s->colorspace= 1;
  546.         break;
  547.     default:
  548.         av_log(avctx, AV_LOG_ERROR, "format not supportedn");
  549.         return -1;
  550.     }
  551.     avcodec_get_chroma_sub_sample(avctx->pix_fmt, &s->chroma_h_shift, &s->chroma_v_shift);
  552.     s->picture_number=0;
  553.     
  554.     return 0;
  555. }
  556. static void clear_state(FFV1Context *f){
  557.     int i, j;
  558.     for(i=0; i<f->plane_count; i++){
  559.         PlaneContext *p= &f->plane[i];
  560.         p->interlace_bit_state[0]= 128;
  561.         p->interlace_bit_state[1]= 128;
  562.         
  563.         for(j=0; j<p->context_count; j++){
  564.             if(f->ac){
  565.                 memset(p->state[j], 128, sizeof(uint8_t)*CONTEXT_SIZE);
  566.             }else{
  567.                 p->vlc_state[j].drift= 0;
  568.                 p->vlc_state[j].error_sum= 4; //FFMAX((RANGE + 32)/64, 2);
  569.                 p->vlc_state[j].bias= 0;
  570.                 p->vlc_state[j].count= 1;
  571.             }
  572.         }
  573.     }
  574. }
  575. static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){
  576.     FFV1Context *f = avctx->priv_data;
  577.     RangeCoder * const c= &f->c;
  578.     AVFrame *pict = data;
  579.     const int width= f->width;
  580.     const int height= f->height;
  581.     AVFrame * const p= &f->picture;
  582.     int used_count= 0;
  583.     uint8_t keystate=128;
  584.     ff_init_range_encoder(c, buf, buf_size);
  585. //    ff_init_cabac_states(c, ff_h264_lps_range, ff_h264_mps_state, ff_h264_lps_state, 64);
  586.     ff_build_rac_states(c, 0.05*(1LL<<32), 256-8);
  587.     *p = *pict;
  588.     p->pict_type= FF_I_TYPE;
  589.     
  590.     if(avctx->gop_size==0 || f->picture_number % avctx->gop_size == 0){
  591.         put_rac(c, &keystate, 1);
  592.         p->key_frame= 1;
  593.         write_header(f);
  594.         clear_state(f);
  595.     }else{
  596.         put_rac(c, &keystate, 0);
  597.         p->key_frame= 0;
  598.     }
  599.     if(!f->ac){
  600.         used_count += ff_rac_terminate(c);
  601. //printf("pos=%dn", used_count);
  602.         init_put_bits(&f->pb, buf + used_count, buf_size - used_count);
  603.     }
  604.     
  605.     if(f->colorspace==0){
  606.         const int chroma_width = -((-width )>>f->chroma_h_shift);
  607.         const int chroma_height= -((-height)>>f->chroma_v_shift);
  608.         encode_plane(f, p->data[0], width, height, p->linesize[0], 0);
  609.         encode_plane(f, p->data[1], chroma_width, chroma_height, p->linesize[1], 1);
  610.         encode_plane(f, p->data[2], chroma_width, chroma_height, p->linesize[2], 1);
  611.     }else{
  612.         encode_rgb_frame(f, (uint32_t*)(p->data[0]), width, height, p->linesize[0]/4);
  613.     }
  614.     emms_c();
  615.     
  616.     f->picture_number++;
  617.     if(f->ac){
  618.         return ff_rac_terminate(c);
  619.     }else{
  620.         flush_put_bits(&f->pb); //nicer padding FIXME
  621.         return used_count + (put_bits_count(&f->pb)+7)/8;
  622.     }
  623. }
  624. static void common_end(FFV1Context *s){
  625.     int i; 
  626.     for(i=0; i<s->plane_count; i++){
  627.         PlaneContext *p= &s->plane[i];
  628.         av_freep(&p->state);
  629.     }
  630. }
  631. static int encode_end(AVCodecContext *avctx)
  632. {
  633.     FFV1Context *s = avctx->priv_data;
  634.     common_end(s);
  635.     return 0;
  636. }
  637. static inline void decode_line(FFV1Context *s, int w, int_fast16_t *sample[2], int plane_index, int bits){
  638.     PlaneContext * const p= &s->plane[plane_index];
  639.     RangeCoder * const c= &s->c;
  640.     int x;
  641.     int run_count=0;
  642.     int run_mode=0;
  643.     int run_index= s->run_index;
  644.     for(x=0; x<w; x++){
  645.         int diff, context, sign;
  646.          
  647.         context= get_context(s, sample[1] + x, sample[0] + x, sample[1] + x);
  648.         if(context < 0){
  649.             context= -context;
  650.             sign=1;
  651.         }else
  652.             sign=0;
  653.         
  654.         if(s->ac){
  655.             diff= get_symbol(c, p->state[context], 1);
  656.         }else{
  657.             if(context == 0 && run_mode==0) run_mode=1;
  658.             
  659.             if(run_mode){
  660.                 if(run_count==0 && run_mode==1){
  661.                     if(get_bits1(&s->gb)){
  662.                         run_count = 1<<log2_run[run_index];
  663.                         if(x + run_count <= w) run_index++;
  664.                     }else{
  665.                         if(log2_run[run_index]) run_count = get_bits(&s->gb, log2_run[run_index]);
  666.                         else run_count=0;
  667.                         if(run_index) run_index--;
  668.                         run_mode=2;
  669.                     }
  670.                 }
  671.                 run_count--;
  672.                 if(run_count < 0){
  673.                     run_mode=0;
  674.                     run_count=0;
  675.                     diff= get_vlc_symbol(&s->gb, &p->vlc_state[context], bits);
  676.                     if(diff>=0) diff++;
  677.                 }else
  678.                     diff=0;
  679.             }else
  680.                 diff= get_vlc_symbol(&s->gb, &p->vlc_state[context], bits);
  681.             
  682. //            printf("count:%d index:%d, mode:%d, x:%d y:%d pos:%dn", run_count, run_index, run_mode, x, y, get_bits_count(&s->gb));
  683.         }
  684.         if(sign) diff= -diff;
  685.         sample[1][x]= (predict(sample[1] + x, sample[0] + x) + diff) & ((1<<bits)-1);
  686.     }
  687.     s->run_index= run_index;        
  688. }
  689. static void decode_plane(FFV1Context *s, uint8_t *src, int w, int h, int stride, int plane_index){
  690.     int x, y;
  691.     int_fast16_t sample_buffer[2][w+6];
  692.     int_fast16_t *sample[2]= {sample_buffer[0]+3, sample_buffer[1]+3};
  693.     s->run_index=0;
  694.     
  695.     memset(sample_buffer, 0, sizeof(sample_buffer));
  696.     
  697.     for(y=0; y<h; y++){
  698.         int_fast16_t *temp= sample[0]; //FIXME try a normal buffer
  699.         sample[0]= sample[1];
  700.         sample[1]= temp;
  701.         sample[1][-1]= sample[0][0  ];
  702.         sample[0][ w]= sample[0][w-1];
  703.         
  704. //{START_TIMER
  705.         decode_line(s, w, sample, plane_index, 8);
  706.         for(x=0; x<w; x++){
  707.             src[x + stride*y]= sample[1][x];
  708.         }
  709. //STOP_TIMER("decode-line")}
  710.     }
  711. }
  712. static void decode_rgb_frame(FFV1Context *s, uint32_t *src, int w, int h, int stride){
  713.     int x, y, p;
  714.     int_fast16_t sample_buffer[3][2][w+6];
  715.     int_fast16_t *sample[3][2]= {
  716.         {sample_buffer[0][0]+3, sample_buffer[0][1]+3},
  717.         {sample_buffer[1][0]+3, sample_buffer[1][1]+3},
  718.         {sample_buffer[2][0]+3, sample_buffer[2][1]+3}};
  719.     s->run_index=0;
  720.     
  721.     memset(sample_buffer, 0, sizeof(sample_buffer));
  722.     
  723.     for(y=0; y<h; y++){
  724.         for(p=0; p<3; p++){
  725.             int_fast16_t *temp= sample[p][0]; //FIXME try a normal buffer
  726.             sample[p][0]= sample[p][1];
  727.             sample[p][1]= temp;
  728.             sample[p][1][-1]= sample[p][0][0  ];
  729.             sample[p][0][ w]= sample[p][0][w-1];
  730.             decode_line(s, w, sample[p], FFMIN(p, 1), 9);
  731.         }
  732.         for(x=0; x<w; x++){
  733.             int g= sample[0][1][x];
  734.             int b= sample[1][1][x];
  735.             int r= sample[2][1][x];
  736. //            assert(g>=0 && b>=0 && r>=0);
  737. //            assert(g<256 && b<512 && r<512);
  738.             
  739.             b -= 0x100;
  740.             r -= 0x100;
  741.             g -= (b + r)>>2;
  742.             b += g;
  743.             r += g;
  744.             
  745.             src[x + stride*y]= b + (g<<8) + (r<<16);
  746.         }
  747.     }
  748. }
  749. static int read_quant_table(RangeCoder *c, int16_t *quant_table, int scale){
  750.     int v;
  751.     int i=0;
  752.     uint8_t state[CONTEXT_SIZE];
  753.     memset(state, 128, sizeof(state));
  754.     for(v=0; i<128 ; v++){
  755.         int len= get_symbol(c, state, 0) + 1;
  756.         if(len + i > 128) return -1;
  757.         
  758.         while(len--){
  759.             quant_table[i] = scale*v;
  760.             i++;
  761. //printf("%2d ",v);
  762. //if(i%16==0) printf("n");
  763.         }
  764.     }
  765.     for(i=1; i<128; i++){
  766.         quant_table[256-i]= -quant_table[i];
  767.     }
  768.     quant_table[128]= -quant_table[127];
  769.     
  770.     return 2*v - 1;
  771. }
  772. static int read_header(FFV1Context *f){
  773.     uint8_t state[CONTEXT_SIZE];
  774.     int i, context_count;
  775.     RangeCoder * const c= &f->c;
  776.     
  777.     memset(state, 128, sizeof(state));
  778.     f->version= get_symbol(c, state, 0);
  779.     f->ac= f->avctx->coder_type= get_symbol(c, state, 0);
  780.     f->colorspace= get_symbol(c, state, 0); //YUV cs type
  781.     get_rac(c, state); //no chroma = false
  782.     f->chroma_h_shift= get_symbol(c, state, 0);
  783.     f->chroma_v_shift= get_symbol(c, state, 0);
  784.     get_rac(c, state); //transparency plane
  785.     f->plane_count= 2;
  786.     if(f->colorspace==0){
  787.         switch(16*f->chroma_h_shift + f->chroma_v_shift){
  788.         case 0x00: f->avctx->pix_fmt= PIX_FMT_YUV444P; break;
  789.         case 0x10: f->avctx->pix_fmt= PIX_FMT_YUV422P; break;
  790.         case 0x11: f->avctx->pix_fmt= PIX_FMT_YUV420P; break;
  791.         case 0x20: f->avctx->pix_fmt= PIX_FMT_YUV411P; break;
  792.         case 0x22: f->avctx->pix_fmt= PIX_FMT_YUV410P; break;
  793.         default:
  794.             av_log(f->avctx, AV_LOG_ERROR, "format not supportedn");
  795.             return -1;
  796.         }
  797.     }else if(f->colorspace==1){
  798.         if(f->chroma_h_shift || f->chroma_v_shift){
  799.             av_log(f->avctx, AV_LOG_ERROR, "chroma subsampling not supported in this colorspacen");
  800.             return -1;
  801.         }
  802.         f->avctx->pix_fmt= PIX_FMT_RGBA32;
  803.     }else{
  804.         av_log(f->avctx, AV_LOG_ERROR, "colorspace not supportedn");
  805.         return -1;
  806.     }
  807. //printf("%d %d %dn", f->chroma_h_shift, f->chroma_v_shift,f->avctx->pix_fmt);
  808.     context_count=1;
  809.     for(i=0; i<5; i++){
  810.         context_count*= read_quant_table(c, f->quant_table[i], context_count);
  811.         if(context_count < 0 || context_count > 32768){
  812.             av_log(f->avctx, AV_LOG_ERROR, "read_quant_table errorn");
  813.             return -1;
  814.         }
  815.     }
  816.     context_count= (context_count+1)/2;
  817.     
  818.     for(i=0; i<f->plane_count; i++){
  819.         PlaneContext * const p= &f->plane[i];
  820.         p->context_count= context_count;
  821.         if(f->ac){
  822.             if(!p->state) p->state= av_malloc(CONTEXT_SIZE*p->context_count*sizeof(uint8_t));
  823.         }else{
  824.             if(!p->vlc_state) p->vlc_state= av_malloc(p->context_count*sizeof(VlcState));
  825.         }
  826.     }
  827.     
  828.     return 0;
  829. }
  830. static int decode_init(AVCodecContext *avctx)
  831. {
  832. //    FFV1Context *s = avctx->priv_data;
  833.     common_init(avctx);
  834.     
  835.     return 0;
  836. }
  837. static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, uint8_t *buf, int buf_size){
  838.     FFV1Context *f = avctx->priv_data;
  839.     RangeCoder * const c= &f->c;
  840.     const int width= f->width;
  841.     const int height= f->height;
  842.     AVFrame * const p= &f->picture;
  843.     int bytes_read;
  844.     uint8_t keystate= 128;
  845.     AVFrame *picture = data;
  846.     ff_init_range_decoder(c, buf, buf_size);
  847.     ff_build_rac_states(c, 0.05*(1LL<<32), 256-8);
  848.     p->pict_type= FF_I_TYPE; //FIXME I vs. P
  849.     if(get_rac(c, &keystate)){
  850.         p->key_frame= 1;
  851.         read_header(f);
  852.         clear_state(f);
  853.     }else{
  854.         p->key_frame= 0;
  855.     }
  856.     p->reference= 0;
  857.     if(avctx->get_buffer(avctx, p) < 0){
  858.         av_log(avctx, AV_LOG_ERROR, "get_buffer() failedn");
  859.         return -1;
  860.     }
  861.     if(avctx->debug&FF_DEBUG_PICT_INFO)
  862.         av_log(avctx, AV_LOG_ERROR, "keyframe:%d coder:%dn", p->key_frame, f->ac);
  863.     
  864.     if(!f->ac){
  865.         bytes_read = c->bytestream - c->bytestream_start - 1;
  866.         if(bytes_read ==0) av_log(avctx, AV_LOG_ERROR, "error at end of AC streamn"); //FIXME
  867. //printf("pos=%dn", bytes_read);
  868.         init_get_bits(&f->gb, buf + bytes_read, buf_size - bytes_read);
  869.     } else {
  870.         bytes_read = 0; /* avoid warning */
  871.     }
  872.     
  873.     if(f->colorspace==0){
  874.         const int chroma_width = -((-width )>>f->chroma_h_shift);
  875.         const int chroma_height= -((-height)>>f->chroma_v_shift);
  876.         decode_plane(f, p->data[0], width, height, p->linesize[0], 0);
  877.         
  878.         decode_plane(f, p->data[1], chroma_width, chroma_height, p->linesize[1], 1);
  879.         decode_plane(f, p->data[2], chroma_width, chroma_height, p->linesize[2], 1);
  880.     }else{
  881.         decode_rgb_frame(f, (uint32_t*)p->data[0], width, height, p->linesize[0]/4);
  882.     }
  883.         
  884.     emms_c();
  885.     f->picture_number++;
  886.     *picture= *p;
  887.     
  888.     avctx->release_buffer(avctx, p); //FIXME
  889.     *data_size = sizeof(AVFrame);
  890.     
  891.     if(f->ac){
  892.         bytes_read= c->bytestream - c->bytestream_start - 1;
  893.         if(bytes_read ==0) av_log(f->avctx, AV_LOG_ERROR, "error at end of framen");
  894.     }else{
  895.         bytes_read+= (get_bits_count(&f->gb)+7)/8;
  896.     }
  897.     return bytes_read;
  898. }
  899. AVCodec ffv1_decoder = {
  900.     "ffv1",
  901.     CODEC_TYPE_VIDEO,
  902.     CODEC_ID_FFV1,
  903.     sizeof(FFV1Context),
  904.     decode_init,
  905.     NULL,
  906.     NULL,
  907.     decode_frame,
  908.     CODEC_CAP_DR1 /*| CODEC_CAP_DRAW_HORIZ_BAND*/,
  909.     NULL
  910. };
  911. #ifdef CONFIG_ENCODERS
  912. AVCodec ffv1_encoder = {
  913.     "ffv1",
  914.     CODEC_TYPE_VIDEO,
  915.     CODEC_ID_FFV1,
  916.     sizeof(FFV1Context),
  917.     encode_init,
  918.     encode_frame,
  919.     encode_end,
  920. };
  921. #endif