block.h

来自「Mobile IP VCEG的信道模拟程序」· C头文件 代码 · 共 35 行

H
35
字号
/************************************************************************
*
*  block.h for H.26L decoder. 
*  Copyright (C) 1999  Telenor Satellite Services, Norway
*  
*  Contacts: 
*  Inge Lille-Lang鴜               <inge.lille-langoy@telenor.com>
* 
*
*  Telenor Satellite Services 
*  P.O.Box 6914 St.Olavs plass                                  
*  N-0130 Oslo, Norway                 
*  
************************************************************************/
#ifndef BLOCK_H
#define BLOCK_H

#include "global.h"

const int JQQ = 1048576;
const int JQQ2 = 524288;

int const MAP[4][4]=
{
  {0,2,4,5},
  {1,3,5,5},
  {2,4,5,5},
  {3,5,5,5},
};

extern const int JQ1[];
extern const byte FILTER_STR[32][4];/*defined in image.h */

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?