macroblock.h
Upload User: hjq518
Upload Date: 2021-12-09
Package Size: 5084k
Code Size: 1k
Category:

Audio program

Development Platform:

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