macroblock.h
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:1k
源码类别:

Audio

开发平台:

Visual C++

  1. /*!
  2.  ************************************************************************
  3.  * file macroblock.h
  4.  *
  5.  * brief
  6.  *    Arrays for macroblock encoding
  7.  *
  8.  * author
  9.  *    Inge Lille-Langoy               <inge.lille-langoy@telenor.com>
  10.  *    Copyright (C) 1999 Telenor Satellite Services, Norway
  11.  ************************************************************************
  12.  */
  13. #ifndef _MACROBLOCK_H_
  14. #define _MACROBLOCK_H_
  15. extern const byte QP_SCALE_CR[52];
  16. //! look up tables for FRExt_chroma support
  17. extern const unsigned char subblk_offset_x[3][8][4];
  18. extern const unsigned char subblk_offset_y[3][8][4];
  19. extern void set_interpret_mb_mode(int slice_type);
  20. extern int  decode_one_macroblock(ImageParameters *img, Macroblock *currMB, StorablePicture *dec_picture);
  21. #endif