cabac.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:6k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. ***********************************************************************
  3. * COPYRIGHT AND WARRANTY INFORMATION
  4. *
  5. * Copyright 2001, International Telecommunications Union, Geneva
  6. *
  7. * DISCLAIMER OF WARRANTY
  8. *
  9. * These software programs are available to the user without any
  10. * license fee or royalty on an "as is" basis. The ITU disclaims
  11. * any and all warranties, whether express, implied, or
  12. * statutory, including any implied warranties of merchantability
  13. * or of fitness for a particular purpose.  In no event shall the
  14. * contributor or the ITU be liable for any incidental, punitive, or
  15. * consequential damages of any kind whatsoever arising from the
  16. * use of these programs.
  17. *
  18. * This disclaimer of warranty extends to the user of these programs
  19. * and user's customers, employees, agents, transferees, successors,
  20. * and assigns.
  21. *
  22. * The ITU does not represent or warrant that the programs furnished
  23. * hereunder are free of infringement of any third-party patents.
  24. * Commercial implementations of ITU-T Recommendations, including
  25. * shareware, may be subject to royalty fees to patent holders.
  26. * Information regarding the ITU-T patent policy is available from
  27. * the ITU Web site at http://www.itu.int.
  28. *
  29. * THIS IS NOT A GRANT OF PATENT RIGHTS - SEE THE ITU-T PATENT POLICY.
  30. ************************************************************************
  31. */
  32. /*!
  33.  ***************************************************************************
  34.  * file
  35.  *    cabac.h
  36.  *
  37.  * brief
  38.  *    Headerfile for entropy coding routines
  39.  *
  40.  * author
  41.  *    Detlev Marpe                                                         n
  42.  *    Copyright (C) 2000 HEINRICH HERTZ INSTITUTE All Rights Reserved.
  43.  *
  44.  * date
  45.  *    21. Oct 2000 (Changes by Tobias Oelbaum 28.08.2001)
  46.  ***************************************************************************
  47.  */
  48. #ifndef _CABAC_H_
  49. #define _CABAC_H_
  50. #include "global.h"
  51. /*******************************************************************************************
  52.  * l o c a l    c o n s t a n t s   f o r   i n i t i a l i z a t i o n   o f   m o d e l s
  53.  *******************************************************************************************
  54.  */
  55. static const int MB_TYPE_Ini[2][10][5]=
  56. {
  57.   {{8,1,50,0,0},  {2,1,50,0,0}, {2,1,50,0,0}, {1,5,50,0,0},   {1,1,50,0,0}, {1,1,50,0,0}, {2,1,50,0,0}, {2,1,50,0,0}, {1,1,50,0,0}, {1,1,50,0,0}},
  58.   {{7,2,50,2,0},  {1,2,50,0,0}, {1,2,50,0,0}, {1,10,50,0,-2}, {2,3,50,0,0}, {9,4,50,2,0}, {2,1,50,1,0}, {7,2,50,1,0}, {2,1,50,0,0}, {3,2,50,0,0}}
  59. };
  60. static const int MV_RES_Ini[2][10][3]=
  61. {
  62.   {{9,5,50},  {1,1,50}, {1,1,50}, {4,5,50},   {1,1,50},  {13,5,50}, {1,1,50}, {6,5,50}, {1,1,50},  {1,1,50}},
  63.   {{1,2,50},  {1,4,50}, {1,2,50}, {1,10,50},  {6,5,50},  {4,5,50},  {1,4,50}, {2,5,50}, {1,10,50}, {1,1,50}}
  64. };
  65. static const int REF_NO_Ini[6][3]=
  66. {
  67.   {10,1,50},  {2,1,50}, {1,1,50}, {1,3,50}, {2,1,50}, {1,1,50}
  68. };
  69. static const int DELTA_QP_Ini[4][3]=
  70. {
  71.   {1,1,50}, {1,1,50}, {1,1,50}, {1,1,50}
  72. };
  73. static const int CBP_Ini[2][3][4][5]=
  74. {
  75.   { {{1,4,50,0,0},   {1,2,50,0,0},   {1,2,50,0,0},   {4,3,50,0,0}},
  76.     {{1,2,50,0,0},   {1,3,50,0,0},   {1,3,50,0,0},   {1,3,50,0,0}},
  77.     {{1,1,50,4,2},   {1,1,50,0,0},   {1,2,50,0,0},   {1,2,50,0,0}} }, //!< intra cbp
  78.   { {{1,4,50,1,-1},  {1,1,50,2,0},   {1,1,50,2,0},   {3,1,50,4,0}},
  79.     {{3,1,50,2,0},   {6,5,50,0,-1},  {6,5,50,-2,-2}, {1,2,50,1,0}},
  80.     {{5,2,50,1,0},   {1,1,50,2,1},   {1,1,50,0,0},   {1,2,50,0,0}} }  //!< inter cbp
  81. };
  82. static const int IPR_Ini[6][2][3]=
  83. {
  84.   {{2,1,50},  {1,1,50}},
  85.   {{3,2,50},  {1,1,50}},
  86.   {{1,1,50},  {2,3,50}},
  87.   {{1,1,50},  {2,3,50}},
  88.   {{1,1,50},  {1,1,50}},
  89.   {{2,3,50},  {1,1,50}}
  90. };
  91. static const int Run_Ini[9][2][3]=
  92. {
  93.   {{3,1,50},  {2,1,50}}, //!< double scan
  94.   {{3,2,50},  {3,4,50}}, //!< single scan, inter
  95.   {{3,2,50},  {1,1,50}}, //!< single scan, intra
  96.   {{1,1,50},  {1,1,50}}, //!< 16x16 DC
  97.   {{1,1,50},  {1,2,50}}, //!< 16x16 AC
  98.   {{3,2,50},  {3,2,50}}, //!< chroma inter DC
  99.   {{4,1,50},  {2,1,50}}, //!< chroma intra DC
  100.   {{3,2,50},  {1,1,50}}, //!< chroma inter AC
  101.   {{2,1,50},  {2,1,50}}  //!< chroma intra AC
  102. };
  103. static const int Level_Ini[9][4][5]=
  104. {
  105.   {{1,1,50,0,0},  {2,1,50,0,0}, {4,3,50,0,0},   {1,1,50,0,0}}, //!< double scan
  106.   {{1,1,50,0,0},  {5,1,50,3,0}, {3,1,50,0,0},   {1,1,50,0,0}}, //!< single scan, inter
  107.   {{3,2,50,0,0},  {6,1,50,0,0}, {7,4,50,0,0},   {5,4,50,0,0}}, //!< single scan, intra
  108.   {{1,1,50,0,0},  {3,1,50,0,0}, {2,1,50,0,0},   {1,1,50,0,0}}, //!< 16x16 DC
  109.   {{4,1,50,0,0},  {6,1,50,3,0}, {2,1,50,0,0},   {5,4,50,0,0}}, //!< 16x16 AC
  110.   {{5,4,50,0,0},  {4,1,50,0,0}, {2,1,50,0,0},   {1,1,50,0,0}}, //!< chroma inter DC
  111.   {{1,1,50,0,0},  {1,1,50,2,0}, {1,1,50,0,0},   {1,1,50,0,0}}, //!< chroma intra DC
  112.   {{1,1,50,0,0},  {4,1,50,0,0}, {2,1,50,0,0},   {1,1,50,0,0}}, //!< chroma inter AC
  113.   {{1,1,50,0,0},  {5,2,50,0,0}, {1,1,50,0,0},   {1,1,50,0,0}}  //!< chroma intra AC
  114. };
  115. /***********************************************************************
  116.  * L O C A L L Y   D E F I N E D   F U N C T I O N   P R O T O T Y P E S
  117.  ***********************************************************************
  118.  */
  119. void unary_bin_encode(EncodingEnvironmentPtr eep_frame,
  120.                       unsigned int symbol,
  121.                       BiContextTypePtr ctx,
  122.                       int ctx_offset);
  123. void unary_bin_max_encode(EncodingEnvironmentPtr eep_frame,
  124.                           unsigned int symbol,
  125.                           BiContextTypePtr ctx,
  126.                           int ctx_offset,
  127.                           unsigned int max_symbol);
  128. void unary_level_encode(EncodingEnvironmentPtr eep_frame,
  129.                         unsigned int symbol,
  130.                         BiContextTypePtr ctx);
  131. void unary_mv_encode(EncodingEnvironmentPtr eep_frame,
  132.                      unsigned int symbol,
  133.                      BiContextTypePtr ctx,
  134.                      unsigned int max_bin);
  135. #endif  // CABAC_H