OpenCores
URL https://opencores.org/ocsvn/mb-jpeg/mb-jpeg/trunk

Subversion Repositories mb-jpeg

[/] [mb-jpeg/] [tags/] [STEP2_2b/] [encoder/] [dct.h] - Blame information for rev 68

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 33 quickwayne
 
2
#include <math.h>
3
#include <stdio.h>
4
 
5
/*
6
        Function Name: dct
7
 
8
        Operation: Find the 8x8 DCT of an array using separable DCT
9
        First, finds 1-d DCT along rows, storing the result in inter[][]
10
        Then, 1-d DCT along columns of inter[][] is found
11
 
12
        Input: pixels is the 8x8 input array
13
 
14
        Output: dct is the 8x8 output array
15
*/
16
 
17
 
18
 
19
void dct(signed char pixels[8][8], signed short dct[8][8]);
20
 
21
void IDCT(short input[8][8], signed char output[8][8]);

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.