Newer
Older
Import / research / video-compression / block / dct.h
@John John on 29 Dec 2020 691 bytes bulk import from macbookpro checkouts
/*
 * =====================================================================================
 *
 *       Filename:  dct.h
 *
 *    Description:  
 *
 *        Version:  1.0
 *        Created:  28/04/2011 16:36:32
 *       Revision:  none
 *       Compiler:  gcc
 *
 *         Author:  John Ryland (jryland), jryland@xiaofrog.com
 *        Company:  InvertedLogic
 *
 * =====================================================================================
 */

#ifndef __DCT_H__
#define __DCT_H__


void initTables();
void printBlock(int blockIn[64]);
void encodeDCT(int blockIn[64], int blockOut[64]);
void decodeDCT(int blockIn[64], int blockOut[64]);
void testDCT();


#endif // __DCT_H__