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

流媒体/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 b_frame.h
  35.  *
  36.  * brief
  37.  *    Header file for B picture coding
  38.  *
  39.  * author
  40.  *    Main contributor and Contact Information
  41.  *    - Byeong-Moon Jeon      <jeonbm@lge.com>
  42.  *    - Yoon-Seong Soh        <yunsung@lge.com>                                     n
  43.  *      LG Electronics Inc., Digital Media Research Lab.                            n
  44.  *      16 Woomyeon-Dong, Seocho-Gu, Seoul, 137-724, Korea
  45.  *************************************************************************************
  46.  */
  47. #ifndef _B_FRAME_H_
  48. #define _B_FRAME_H_
  49. #define MAX_DIR_SAD     100000000
  50. extern int  ONE_FOURTH_TAP[3][2];
  51. extern int  MODTAB[3][2];
  52. extern int  NCBP[48][2];
  53. extern byte PRED_IPRED[7][7][6];
  54. extern int  IPRED_ORDER[6][6];
  55. extern int  JQ[32][2];
  56. extern int  QP2QUANT[32];
  57. #endif