~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to mpeglib/lib/mpegplay/proto.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
 
 
3
#ifndef __PROTO_H
 
4
#define __PROTO_H
 
5
 
 
6
 
 
7
 
 
8
 
 
9
#include "videoDecoder.h"
 
10
#include "mpegVideoHeader.h"
 
11
 
 
12
 
 
13
 
 
14
/* decoders.c */
 
15
void init_tables (void);
 
16
extern "C" void Fast16Dither(unsigned char *lum, 
 
17
                             unsigned char *cr,
 
18
                             unsigned char *cb,
 
19
                             unsigned char *out,
 
20
                             int rows, 
 
21
                             int cols, 
 
22
                             int mod);
 
23
 
 
24
 
 
25
/* floatdct.c */
 
26
void init_float_idct (void);
 
27
void float_idct (short* block);
 
28
extern "C" void IDCT_mmx(short *);
 
29
 
 
30
 
 
31
 
 
32
 
 
33
 
 
34
 
 
35
#endif
 
36