blob: b9c35c2d43e8aeba9d1f6d57761c758204d54074 (
plain)
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
34
35
36
|
#ifndef __PROTO_H
#define __PROTO_H
#include "videoDecoder.h"
#include "mpegVideoHeader.h"
/* decoders.c */
void init_tables (void);
extern "C" void Fast16Dither(unsigned char *lum,
unsigned char *cr,
unsigned char *cb,
unsigned char *out,
int rows,
int cols,
int mod);
/* floatdct.c */
void init_float_idct (void);
void float_idct (short* block);
extern "C" void IDCT_mmx(short *);
#endif
|