mqlencaltypespec.h

来自「jpeg 2000 压缩算法源代码 核心ebcot」· C头文件 代码 · 共 24 行

H
24
字号
 
				   {
                      // We are sure that next byte after current byte buffer has no
                      // bit stuffing
                      bitsInN3Bytes = 23; // 8 + 7 + 8
				   }
                   if ((11-CT+16) <= bitsInN3Bytes)
				   {
                       return m_nrOfWrittenBytes+(bDelFF ? 1 : 0)+1+3;
				   }
                   else 
				   {
                      return m_nrOfWrittenBytes+(bDelFF ? 1 : 0)+1+4;
				   }
			   }
			   break;
        case LENGTH_LAZY:
			{
                // This is the very basic one that appears in the VM text
                if ((27-CT) <= 22) 
				{
                    return m_nrOfWrittenBytes+(bDelFF ? 1 : 0)+1+3;
				}
     

⌨️ 快捷键说明

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