aboutsummaryrefslogtreecommitdiff
path: root/Src/f263/idct.h
blob: a7c5676ada00a7fe2b5516aaa9d5effc62807da9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
	class IDCT
	{
	public:
		void init();
		void idct(short *block);
	private:
		void idctcol(short *blk);
		void idctrow(short *blk);

		static bool initted;
		static short iclip[1024]; /* clipping table */
		static short *iclp;
	};