File: AriConst.h

package info (click to toggle)
apngasm 2.91-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,760 kB
  • sloc: ansic: 34,259; cpp: 7,258; makefile: 40
file content (17 lines) | stat: -rw-r--r-- 449 bytes parent folder | download | duplicates (20)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __ARICONST_H
#define __ARICONST_H

#include "AriBitCoder.h"

typedef NCompression::NArithmetic::CRangeEncoder CMyRangeEncoder;
typedef NCompression::NArithmetic::CRangeDecoder CMyRangeDecoder;

template <int aNumMoveBits> class CMyBitEncoder: 
    public NCompression::NArithmetic::CBitEncoder<aNumMoveBits> {};
template <int aNumMoveBits> class CMyBitDecoder: 
    public NCompression::NArithmetic::CBitDecoder<aNumMoveBits> {};

#endif