-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIDCT.h
33 lines (30 loc) · 1.04 KB
/
IDCT.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// *************************************************************************************
//
// IDCT.h
//
// version 1.0
// 01/23/2016
// Written by Matthias Grün
//
// IceJPEG is open source and may be used freely, as long as the original author
// of the code is mentioned.
//
// You may redistribute it freely as long as no fees are charged and this information
// is included.
//
// If modifications are made to the code that alter its behavior and the modified code
// is made available to others or used in other products, the author is to receive
// a copy of the modified code.
//
// This code is provided as is and I do not and cannot guarantee the absence of bugs.
// Use of this code is at your own risk and I cannot be held liable for any
// damage that is caused by its use.
//
// *************************************************************************************
#ifndef _IDCT_H
#define _IDCT_H
void idctrow(int *src);
void idctcol(int *src, unsigned char *dst, int stride);
void init_idct();
#endif